Newton’s Method

Computational Math
Derivatives
Fast Convergence
Quadratic Convergence
Root Finding
Authors

Dhruv Azad

Apurva Nakade

Published

June 25, 2026

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)}. \]

Examples

The global behavior of Newton’s method can be surprisingly sensitive to the starting point. The examples below illustrate fast convergence, slow convergence, failure near a flat tangent, and cases where the iterates appear to diverge before eventually finding a root.

Click any example to load it into the app.