Jump to content

Secant method

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jaredwf (talk | contribs) at 16:17, 7 May 2004 (added new secant method page). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

In numerical analysis, the secant method is a root-finding algorithm derived from Newton's method.

Newton's method is defined by this recurrence relation:

The derivative of f can be defined as

so

If we let x = xn and h = xn-1 - xn, we have

Replacing the derivative of f, in Newton's method, with this approximation gives the secant method:

The secant method requires two initial values: x0 and x1.