The reference iterative method: linearize f at the current iterate and jump to the tangent's root. Full derivation along three routes and proof of quadratic order with its error equation.
The formula
xk+1=xk−f′(xk)f(xk),k=0,1,2,…
Newton-Raphson method.
Geometrically, each iteration replaces the curve by its tangent line at (xk,f(xk)) and takes as next approximation the point where that tangent crosses the axis. It is a fixed-point method with ϕ(x)=x−f′(x)f(x): one-point, memoryless and using derivatives.
Write f via the Fundamental Theorem of Calculus from xk and approximate the integral with a rectangle (constant integrand f′(xk), the same idea as in the Euler derivation):
f(x)=f(xk)+∫xkxf′(t)dt≈f(xk)+f′(xk)(x−xk)
Evaluate at x=α, where f(α)=0, and solve for α:
0≈f(xk)+f′(xk)(α−xk)⇒α≈xk−f′(xk)f(xk)
That approximation of α is the next iterate. Approximating the integral with richer quadratures (trapezoid, midpoint, Simpson) produces higher-order methods along this same route.
Proof of order 2 (error equation)
Let α be a simple root (f(α)=0, f′(α)=0), ek=xk−α the error and c2=21f′(α)f′′(α). Expand f(xk) by Taylor around α; the constant term f(α) vanishes:
Subtract α in Newton's formula and substitute: the linear terms in ek cancel and the quadratic error equation remains. Newton's method has order p=2.
ek+1=xk+1−α=ek−f′(xk)f(xk)=c2ek2+O(ek3)
Beyond Newton
Newton is the starting point of almost everything else: replacing the derivative by differences yields the secant and Steffensen methods; composing and adding weight functions builds the high-order methods (Traub, Ostrowski, Jarratt); and its vector version solves systems of nonlinear equations. It is also the standard tool for the implicit equations arising in implicit ODE methods.