0% found this document useful (0 votes)
28 views1 page

Assisgnment 3

The bisection method is used to calculate the root of f(x) = x^2 - 2 on the interval [-2, -1] with an error tolerance of 0.001. Over 10 iterations, the method converges on a root between -1.41602 and -1.41406.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

Assisgnment 3

The bisection method is used to calculate the root of f(x) = x^2 - 2 on the interval [-2, -1] with an error tolerance of 0.001. Over 10 iterations, the method converges on a root between -1.41602 and -1.41406.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Calculate f(x) =X^2 - 2 by using bisection method with intial bounds [-2,-1].

And the stopping Criteria is


eabs<es where e =0.001.

S.NO Xi Xu f(Xi) f(Xu) Xm f(Xm) f(Xi)*f(Xm) eabs<es


1 -2 -1 2 -1 -1.5 0.25 0.5 -
2 -1.5 -1 0.25 -1 -1.25 -0.4375 -0.109375 0
3 -1.5 -1.25 0.25 -0.4375 -1.375 -0.10938 -0.0273438 0
4 -1.5 -1.375 0.25 -0.10938 -1.4375 0.066406 0.0166016 0
5 -1.4375 -1.375 0.066406 -0.10938 -1.40625 -0.02246 -0.0014915 0
6 -1.4375 -1.40625 0.066406 -0.02246 -1.42188 0.021729 0.0014429 0
7 -1.42188 -1.40625 0.021729 -0.02246 -1.41406 -0.00043 -9.283E-06 0
8 -1.42188 -1.41406 0.021729 -0.00043 -1.41797 0.010635 0.0002311 0
9 -1.41797 -1.41406 0.010635 -0.00043 -1.41602 0.0051 5.4243E-05 0
10 -1.41602 -1.41406 0.0051 -0.00043 -1.41504 0.002336 1.1912E-05 1

You might also like