Newton’s Method

Computational math
Derivatives
Fast convergence
Quadratic convergence
Root finding
Authors

Dhruv Azad

Apurva Nakade

Published

June 25, 2026

Newton’s method is one of the most common methods for solving equations of the form Newton’s method finds roots of \(f(x) = 0\) by repeatedly linearizing the function: starting from a guess \(x_0\), it draws the tangent line at \((x_n, f(x_n))\) and uses its \(x\)-intercept as the next guess.

\[ f(x)=0. \]

Starting from an initial guess \(x_0\), the method produces new approximations using

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