Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 4 fuera de 393 páginas
Examen

Solutions Manual for Numerical and Analytical Methods with MATLAB (1st Edition, 2009) by Bober – Covers Chapters (2 - 14)

Document preview thumbnail
Vista previa 4 fuera de 393 páginas

INSTANT DOWNLOAD PDF — This solutions manual for Numerical and Analytical Methods with MATLAB (1st Edition, 2009) by William Bober offers complete, step-by-step solutions to problems involving MATLAB-based numerical and analytical techniques. Covering topics such as linear algebra, differential equations, integration, and optimization, it's ideal for engineering and applied science students looking to strengthen their MATLAB problem-solving skills. matlab solutions manual, william bober 1st edition answers, numerical methods with matlab, analytical methods solved, differential equations matlab exercises, engineering computation guide, integration and optimization solutions, applied mathematics with matlab, linear algebra problem solving, matlab textbook answers

Vista previa del contenido

Chapters 2 – 14 Covered




SOLUTIONS

, SOLUTION MANUAL

NUMERICAL AND ANALYTICAL METHODS WITH

MATLAB

Table of Contents

Page

Chapter 2 1

Chapter 3 46

Chapter 4 58

Chapter 5 98

Chapter 6 107

Chapter 7 176

Chapter 8 180

Chapter 9 188

Chapter 10 214

Chapter 11 271

Chapter 12 303

Chapter 13 309

Chapter 14 339




@Seismicisolation
@Seismicisolation

, CHAPTER 2

P2.1. Taylor series expansion of f (x ) about x = 0 is:

f ' ' (0) 2 f ' ' ' (0) 3 f 1V 4
f ( x ) = f ( 0 ) + f ' ( 0) x + x + x + x + ...
2! 3! 4!

For f ( x ) = cos ( x ) , f (0) = 1,

f ′( x ) = − sin( x ), f ' (0) = 0,

f ' ' ( x ) = − cos( x ), f ' ' (0) = − 1,

f ' ' ' ( x ) = + sin( x ), f ' ' ' (0) = 0,

f 1V ( x ) = + cos( x ), f 1V (0) = 1

We can see that

x2 x4 x6 x8
cos( x ) = 1 − + − + − + − + ...
2 ! 4 ! 6 ! 8!

and that

x2
term ( k) = − term ( k − 1) ×
2 k (2 k − 1)

The following program evaluates cos( x ) by both an arithmetic statement and by the

above series for - x in step of 0.1 π .

% cosf.m

% This program evaluates cos(x) by both arithmetic statement and by

% series for - x in steps of 0.1

clear; clc;

xi=-pi; dx=0.1*pi;

for j=1:21

x(j)=xi+(j-1)*dx;

cos_arith(j)= cos(x(j));


@Seismicisolation
1
@Seismicisolation

, sum=1.0; term=1.0;

for k=1:50

den=2*k*(2*k-1);

term=-term*x(j)^2/den;

sum=sum+term;

test=abs(sum*1.0e-6);

if abs(term) <= test;

break;

end

end

cos_ser(j)=sum;

nterms(j)=k;

end

fo=fopen('output.dat','w');

fprintf(fo,'x cos(x) cos (x) terms in \n');

fprintf(fo,' by arith stm by series the series \n');

fprintf(fo,'=====================================================\n');

for j=1:21

fprintf(fo,'%10.5f %10.5f %10.5f %3i \n',...

x(j),cos_arith(j),cos_ser(j),nterms(j));

fprintf(fo,'-------------------------------------------------\n');

end

fclose(fo);

plot(x,cos_arith),xlabel('x'),ylabel('cos(x)'),

title('cos(x) vs. x'),grid;




@Seismicisolation
2
@Seismicisolation

Libro relacionado
 image
William Bober, Chi-Tay Tsai, Oren Masory Numerical and Analytical Methods with MATLAB
Edición: 2009 ISBN: 9781420093568 Edición: Desconocido

Información del documento

Subido en
5 de julio de 2025
Número de páginas
393
Escrito en
2024/2025
Tipo
Examen
Contiene
Preguntas y respuestas
$18.49

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
TestBanksStuvia
3.9
(325)
Vendido
3128
Seguidores
1210
Artículos
2131
Última venta
5 días hace


Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes