Newton’s Method
Definition
Newton’s method is an iterative root-finding algorithm for solving . It requires an analytical derivative and is among the fastest methods when applicable.
Intuition
At each step, replace the curve with its tangent line at the current guess and use where that line crosses zero as the next guess. Because the tangent is a good local approximation, each iterate is typically much closer to the root than the previous one — convergence is quadratic near the root.
Formal Description
At each iterate , approximate by its tangent line:
Setting gives the next iterate:
An initial guess close to the root is required.
Example — estimating : Solve with :
Starting from , this converges rapidly to .
Applications
Used in optimisation (solving ), in numerical solvers for ODEs and PDEs, and in computational geometry. Variants (quasi-Newton methods) approximate when it is expensive to compute exactly.
Trade-offs
Convergence is not guaranteed globally: a poor initial guess can cause divergence, cycling, or convergence to the wrong root. The method requires at each step and knowledge of analytically or numerically. Near a root with multiplicity , convergence degrades from quadratic to linear.
Links
- Limits and Continuity — convergence relies on continuity of and