We can obtain this from Newton's method by replacing the tangent slope
f'(x) by the chord or secant slope
. Using
a Taylor expansion of f about x, we find


The formula can be written with a common denominator as
| |
(2) |
which is recognisable as the formula for inverse interpolation, that is, it linearly interpolates the values of f at xn and xn-1 to approximate the value of x at which f vanishes. This form should not be used in practical evaluation, since it computes the ratio of two quantities which are liable to be differences of nearly equal numbers.
This formulation suggests a variant of the method, in which convergence is guaranteed provided starting values can be found for which the values of f are opposite in sign. This is defined by
![]()
Example Evaluate
.
We use the secant method to solve the equation x2-15=0. The secant formula isStarting with x0=3, x1=4, we calculate to 9D successively x2=3.857142857, x4=3.872983871, x5=3.872983347,x6=3.872983347. This looks nearly as good as Newton's method, but our starting values were fairly close.