Bisection Method
Bisection Method
Given that, f(x)=X2-2. Our task is finding the root of this equation.
Solution:
Let us start with an interval of length one: A0 =1 and B1= 2. Note
that f(A0) = f(1) = -1 <0, and f(B0) =f(2) = 2>0. Here are the first 20
applications of the bisection algorithm.
ADVANTAGE
• Slow to converge.
• Good intermediate approximations may be discarded.
• Will only work if the Jacobian can be computed
• If the Jacobian is singular the algorithm breaks.
• Number of iterations can not be determined before the
algorithm begins.
THANK YOU!!!