0% found this document useful (0 votes)
8 views4 pages

Aufgabe 15

The document presents two numerical methods for finding roots: Newton's method and the fixed-point iteration method. Newton's method converges to a solution in 4 iterations, while the fixed-point method takes 42 iterations to reach a similar level of precision. Both methods demonstrate the iterative process of refining estimates to approach the root of a function.

Uploaded by

hzzhang0801
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views4 pages

Aufgabe 15

The document presents two numerical methods for finding roots: Newton's method and the fixed-point iteration method. Newton's method converges to a solution in 4 iterations, while the fixed-point method takes 42 iterations to reach a similar level of precision. Both methods demonstrate the iterative process of refining estimates to approach the root of a function.

Uploaded by

hzzhang0801
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 4

NEWTON:

>> x=1;
>> x=x-meinf(x)/meindf(x)
x=
0.914155281832543
>> x=x-meinf(x)/meindf(x)
x=
0.910017665783406
>> x=x-meinf(x)/meindf(x)
x=
0.910007572548888
>> x=x-meinf(x)/meindf(x)
x=
0.910007572488709
>> x=x-meinf(x)/meindf(x)
x=
0.910007572488709

DIE ANZAHL DER LETRATIONEN:4

FIXPUNKT:
>> x=1;
>> x=(exp(x)/3)^0.5
x=
0.951889669457381
>> x=(exp(x)/3)^0.5
x=
0.929265016986641
>>
>> x=(exp(x)/3)^0.5
x=
0.918812102813262
>>
>> x=(exp(x)/3)^0.5
x=
0.914022498021803
>> x=(exp(x)/3)^0.5
x=
0.911836213658182
>> x=(exp(x)/3)^0.5
x=
0.910839991635492
>> x=(exp(x)/3)^0.5
x=
0.910386405183666
>> x=(exp(x)/3)^0.5
x=
0.910179959125176
>> x=(exp(x)/3)^0.5
x=
0.910086012441451
>> x=(exp(x)/3)^0.5
x=
0.910043263664098
>> x=(exp(x)/3)^0.5
x=
0.91002381225355
>> x=(exp(x)/3)^0.5
x=
0.910014961673199
>> x=(exp(x)/3)^0.5
x=
0.91001093460184
>> x=(exp(x)/3)^0.5
x=
0.910009102264199
>> x=(exp(x)/3)^0.5
x=
0.910008268542615
>> x=(exp(x)/3)^0.5
x=
0.910007889195927
>> x=(exp(x)/3)^0.5
x=
0.910007716591704
>> x=(exp(x)/3)^0.5
x=
0.91000763805612
>> x=(exp(x)/3)^0.5
x=
0.91000760232213
>> x=(exp(x)/3)^0.5
x=
0.910007586063028
>> x=(exp(x)/3)^0.5
x=
0.910007578665076
>> x=(exp(x)/3)^0.5
x=
0.910007575298979
>> x=(exp(x)/3)^0.5
x=
0.910007573767393
>> x=(exp(x)/3)^0.5
x=
0.910007573070515
>> x=(exp(x)/3)^0.5
x=
0.910007572753433
>> x=(exp(x)/3)^0.5
x=
0.910007572609159
>> x=(exp(x)/3)^0.5
x=
0.910007572543514
>> x=(exp(x)/3)^0.5
x=
0.910007572513646
>> x=(exp(x)/3)^0.5
x=
0.910007572500055
>> x=(exp(x)/3)^0.5
x=
0.910007572493872
>> x=(exp(x)/3)^0.5
x=
0.910007572491058
>> x=(exp(x)/3)^0.5
x=
0.910007572489778
>> x=(exp(x)/3)^0.5
x=
0.910007572489195
>> x=(exp(x)/3)^0.5
x=
0.91000757248893
>> x=(exp(x)/3)^0.5
x=
0.91000757248881
>> x=(exp(x)/3)^0.5
x=
0.910007572488755
>> x=(exp(x)/3)^0.5
x=
0.91000757248873
>> x=(exp(x)/3)^0.5
x=
0.910007572488719
>> x=(exp(x)/3)^0.5
x=
0.910007572488713
>> x=(exp(x)/3)^0.5
x=
0.910007572488711
>> x=(exp(x)/3)^0.5
x=
0.91000757248871
>> x=(exp(x)/3)^0.5
x=
0.910007572488709
>> x=(exp(x)/3)^0.5
x=
0.910007572488709

DIE ANZAHL DER LETRATIONEN:42

You might also like