Simplest root finding algorithm.
Bisection Method
It works when f is a continuous function.
Bisection Method
Need a and b, such that f(a) and f(b) have opposite signs.
Bisection Method
Converges slowly.
Bisection Method
This method does not require the existence / computation of a derivative.
Secant Method
Slower convergence compared with Newton’s method but faster than Bisection.
Secant Method
May not converge if started too far away from a root.
Secant Method and Newton’s Method
Requires that the function f has a continuous derivative.
Newton’s Method
When it converges, faster than Bisection and Secant Methods.
Newton’s Method