Secant Method

Computational math
No derivatives
Superlinear convergence
Root finding
Author

Apurva Nakade

Published

June 25, 2026

The secant method finds roots of \(f(x) = 0\) the way Newton’s method does — by repeatedly intersecting a line with the \(x\)-axis — but it replaces the tangent line with a secant line through the two most recent approximations, so no derivative is needed.

\[ f(x)=0. \]

Starting from two initial guesses \(x_0\) and \(x_1\), the method produces new approximations using

\[ x_{n+1}=x_n-f(x_n)\frac{x_n-x_{n-1}}{f(x_n)-f(x_{n-1})}. \]