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

Bisection Method for Root Finding

The document uses the bisection method to find the real root of the function f(x) = 4x^3 - 6x^2 + 7x - 2.3 between the initial guesses of 0 and 1. It runs 5 iterations, updating the lower and upper bounds of x and calculating the estimated error at each step, until the error falls below 10%.

Uploaded by

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

Bisection Method for Root Finding

The document uses the bisection method to find the real root of the function f(x) = 4x^3 - 6x^2 + 7x - 2.3 between the initial guesses of 0 and 1. It runs 5 iterations, updating the lower and upper bounds of x and calculating the estimated error at each step, until the error falls below 10%.

Uploaded by

Sulaiman Ahlaken
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Example

Determine the real root of f (x) = 4x3 6x2 + 7x 2.3:

5.2

Using bisection to locate the root. Employ initial guesses of xl = 0 and xu = 1 and iterate
until the estimated error a falls below a level of s = 10%.
Solution
Iteration

xl

xu

xm

f(x l )

f(x m )

f(x l )f(x m )

1
2
3
4
5

0.0000
0.0000
0.2500
0.3750
0.4375

1.0000
0.5000
0.5000
0.5000
0.5000

0.5000
0.2500
0.3750
0.4375
0.4688

100.0000
33.3333
14.2857
6.6667

-2.3
-2.3
-0.8625
-0.3078125
-0.050976562

0.2
-0.8625
-0.3078125
-0.050976562
0.07487793

-0.46
1.98375
0.265488281
0.015691223
-0.003817019

You might also like