2) False Position Method (Regula Falsi Method)
2) False Position Method (Regula Falsi Method)
Step-1: Find points x0 and x1 such that x0 < x1 and f (x0 ) f (x1 ) < 0
x1 x0
Step-2: Take the interval [x0 ; x1 ] and …nd next value x2 = x0 f (x0 )
f (x1 ) f (x0 )
Step-3: If f (x2 ) = 0 then x2 is an exact root,
Example-1
Find a root of an equation f (x) = x3 x 1 using False Position method (After 6 iterations).
Solution:
x 0 1 2
f (x) 1 1 5
1st iteration :
2st iteration :
x0 = 1:16667 and x1 = 2
3st iteration :
x0 = 1:25311 and x1 = 2
4st iteration :
x0 = 1:29344 and x1 = 2
1
f (x2 ) = f (1:31128) = 0:05659 < 0
5st iteration :
x0 = 1:31128 and x1 = 2
6st iteration :
x0 = 1:31899 and x1 = 2
Example-2
Find a root of an equation f (x) = 2x3 2x 5 using False Position method (After 5 iterations).
Solution:
x 0 1 2
f (x) 5 5 7
1st iteration :
2st iteration :
x0 = 1:41667 and x1 = 2
3st iteration :
x0 = 1:55359 and x1 = 2
2
f (x2 ) = f (1:58924) = 0:15063 < 0
4st iteration :
x0 = 1:58924 and x1 = 2
5st iteration :
x0 = 1:59789 and x1 = 2
Approximate root of the equation 2x3 2x 5 = 0 using False Position mehtod is 1:59996