Newton’s Method

Finds roots by repeatedly following the tangent line to its x-intercept, converging quadratically near a simple root.
Author

Dhruv Azad

Published

June 25, 2026

NoteConvergence plots

Newton’s method finds roots of \(f(x)=0\) by repeatedly linearizing: from \(x_n\), it follows the tangent line at \((x_n, f(x_n))\) to its \(x\)-intercept,

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