Secant Method
Description
Replacing the derivative in Newton’s method with a finite difference, we get the secant method. This method does not require the computation (nor the existence) of a derivative, but the price is slower convergence.
Algorithm
Select two initial approximations and , the function , select a tolerance of error .
Calculate the midpoint of the interval:
Calculate the relative error, if it’s sufficiently small, the calculation stops, otherwise, continue: