Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Document preview thumbnail
Voorbeeld 4 van de 410 pagina's
Tentamen (uitwerkingen)

Solutions Manual for Numerical and Analytical Methods with MATLAB, 1st Edition by William Bober | Complete Worked Solutions and MATLAB Code

Document preview thumbnail
Voorbeeld 4 van de 410 pagina's

INSTANT PDF DOWNLOAD — This comprehensive solutions manual for Numerical and Analytical Methods with MATLAB, 1st Edition by William Bober, provides detailed, step-by-step solutions and fully functional MATLAB code for all textbook exercises and examples. It covers a wide range of topics including linear algebra, differential equations, numerical integration, interpolation, curve fitting, optimization, and analytical methods. Each solution includes clear mathematical explanations alongside MATLAB implementations to help students understand both the theory and computational techniques used in engineering and scientific problem-solving. Ideal for mechanical, civil, electrical, and applied mathematics students, this manual is an essential resource for coursework, projects, and exam preparation.

Voorbeeld van de inhoud

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

, 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 8
cos( x) =1 − + − +x
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));

, 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;

Documentinformatie

Geüpload op
7 oktober 2025
Aantal pagina's
410
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden
$19.99

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
Verkocht
199
Volgers
28
Items
7641
Laatst verkocht
2 dagen geleden


Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen