*** Welcome to piglix ***

Secant method


In numerical analysis, the secant method is a root-finding algorithm that uses a succession of roots of secant lines to better approximate a root of a function f. The secant method can be thought of as a finite difference approximation of Newton's method. However, the method was developed independently of Newton's method, and predates it by over 3,000 years.

The secant method is defined by the recurrence relation

As can be seen from the recurrence relation, the secant method requires two initial values, x0 and x1, which should ideally be chosen to lie close to the root.

Starting with initial values x0 and x1, we construct a line through the points (x0, f(x0)) and (x1, f(x1)), as demonstrated in the picture on the right. In slope-intercept form, this line has the equation

We find the root of this line – the value of x such that y = 0 – by solving the following equation for x:

The solution is

We then use this new value of x as x2 and repeat the process using x1 and x2 instead of x0 and x1. We continue this process, solving for x3, x4, etc., until we reach a sufficiently high level of precision (a sufficiently small difference between xn and xn - 1).

The iterates of the secant method converge to a root of , if the initial values and are sufficiently close to the root. The order of convergence is α, where


...
Wikipedia

...