Secant Method

Approximates Newton’s method without a derivative, using the secant line through the last two iterates.
Author

Apurva Nakade

Published

June 25, 2026

NoteConvergence plots

The secant method finds roots of \(f(x)=0\) like Newton’s method, but replaces the tangent line with the secant line through the two most recent approximations, so no derivative is needed:

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