All courses › Numerical Methods › Secant method
Secant method
The secant method resembles Newton's method, but uses a secant line through two points instead of the tangent, so the derivative is not needed. It converges a bit slower than Newton (order ), but is useful when is hard to compute.
the iteration formula, uses the two previous points
Symbols
| the two most recent approximations |
Example
, , :
.
The secant method needs two starting points, not just one, since it uses a line between them.
Practise solving equations for free →
← Newton's method · Fixed-point iteration →
Part of Numerical Methods: Solving equations.