0% found this document useful (0 votes)
29 views

False Position Method: Formula

The document describes the false position method and bisection method for finding the root of the function F(x)=x +x-3 between the boundaries of x=1 and x=2. For the false position method, it iteratively calculates the root xr using the formula xr=(xl*F(xu)-(xu)*F(xl))/(F(xu)-F(xl)) until the tolerance value of 0.001 is reached. For the bisection method, it calculates the root by averaging the boundary values xl and xu until the tolerance value is reached. The table shows the results of each iteration for both methods.

Uploaded by

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

False Position Method: Formula

The document describes the false position method and bisection method for finding the root of the function F(x)=x +x-3 between the boundaries of x=1 and x=2. For the false position method, it iteratively calculates the root xr using the formula xr=(xl*F(xu)-(xu)*F(xl))/(F(xu)-F(xl)) until the tolerance value of 0.001 is reached. For the bisection method, it calculates the root by averaging the boundary values xl and xu until the tolerance value is reached. The table shows the results of each iteration for both methods.

Uploaded by

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

FALSE POSITION METHOD

F(x)=x3+x-3
Initial Values / Boundaries:
Tolerance Value:

xl

xu

f(xl)

1.125

1.17798
2
1.19941
5
1.20791
4
1.21125
7
1.21256
8
1.21308
2

xl = 1
10-3 (0.001)

2
2
2
2
2
2

f(xu)
-1

-0.45117

-0.1874

-0.07511

-0.02967

-0.01165

-0.00457

-0.00179

xr
1.125
1.17798
2
1.19941
5
1.20791
4
1.21125
7
1.21256
8
1.21308
2
1.21328
2

xu = 2

Tol.valu
F(xr)
error
e
-0.45117 0.111111 FALSE
0.04497
-0.1874
7 FALSE
-0.07511
-0.02967
-0.01165
-0.00457
-0.00179
-0.0007

0.01787
0.00703
6

FALSE

0.00276
0.00108
1
0.00042
3
0.00016
6

FALSE

FALSE

FALSE
FALSE
TRUE

Formula:
=B6^3+B6-3

=C6^3+C6-3

=(B6*(E6)-(C6)*D6)/(E6-D6)

=(F6^3+F6-3)

=(F6-B6)/F6

=IF(D6*G6<0,B6,F6)

=IF(E6*G6<0,C6,F6)

xr

BISECTION METHOD
F(x)=x3+x-3
Initial Values / Boundaries:
Tolerance Value:

xl = 1
,
-3
10 (0.001)

xl
1

xu
2

xr
1.5

f(xl)
-1

f(xu)
7

1.5

1.25

-1

1.25

1.125

-1

1.125

1.25

1.1875

-0.45117

1.1875

1.25

-0.13794

1.1875
1.20312
5
1.21093
8
1.21093
8

1.21875

1.21875
1.20312
5
1.21093
8
1.21484
4
1.21289
1

1.875
0.20312
5
0.20312
5
0.20312
5
0.02902
2
0.02902
2
0.02902
2
0.00776
5

1.21875
1.21875
1.21484
4

-0.13794
-0.05534
-0.01338
-0.01338

xu = 2

f(xr)
1.875
0.20312
5

f(xl)*f(xr)
error
-1.875
0.333333
-0.20313

0.2

-0.45117

0.451172

0.111111

-0.13794
0.02902
2

0.062234

0.052632

-0.004

0.025641

-0.05534

0.007634

0.012987

-0.01338
0.00776
5

0.00074

0.006452

-0.0001

0.003215

-0.00282

3.78E-05

0.00161

xr

You might also like