All courses › Numerical Methods › Newton's method
Newton's method
Newton's method finds a root by following the tangent of down to where it crosses the x-axis, repeatedly. Near a simple root it converges quadratically — the number of correct digits roughly doubles each step — but it needs the derivative and can diverge with a poor initial guess.
the iteration formula
Symbols
| current approximation | ||
| the derivative at |
Example
, :
.
Newton's method can diverge if is near zero or the initial guess is poor.
Practise solving equations for free →
← Bisection method · Secant method →
Part of Numerical Methods: Solving equations.