Programming Techniques: 1 Fixed Point Method
Programming Techniques: 1 Fixed Point Method
Pramod
M19MA013
1
so here approximated root after 1 iteration is b1 by repeating the method we
can check either root lies in [a0 , b1 ] or [b1 , b0 ] by checking the conditions
or
f (b1 ) ∗ f (b0 ) < 0
If root lies in [a0 , b1 ] i.e., f (a0 ) ∗ f (b1 ) < 0 holds then let a1 = a0 and b2 = b1
and further proceed with the same
Otherwise root in [b1 , b0 ] i.e., f (b1 )∗f (b0 ) < 0 holds then let a1 = b1 and b2 = b0
and further proceed with the same
Repeat this process untill we get the approximate root.