High-order methods: Halley, Traub, Ostrowski and Jarratt
Three techniques to design iterative methods faster than Newton: quadrature formulas, scheme composition (with frozen derivative) and weight functions, with the Chebyshev-Halley and King families.
Composition: why chaining Newtons is not enough
Composing Newton with itself (double Newton) gives order 4, but requires 4 evaluations per iteration (f and f′ at two points): it is not optimal. Freezing the derivative reuses f′(xk) in the second step and saves one evaluation, at the cost of some order. The result is Traub's method (or Potra-Pták), of order 3 with 3 evaluations:
ykxk+1=xk−f′(xk)f(xk)=yk−f′(xk)f(yk)
Traub's method (Potra-Pták): order 3 with frozen derivative.
Quadrature formulas
Just as in ODE methods, one can write f(x)=f(xk)+∫xkxf′(t)dt and approximate the integral with different quadratures, using Newton as predictor yk=xk−f′(xk)f(xk). The trapezoidal rule yields the trapezoid method; the midpoint rule and Simpson give their analogues:
xk+1=xk−f′(yk)+f′(xk)2f(xk)
Trapezoid method.
xk+1=xk−f′(2xk+yk)f(xk)
Midpoint method.
xk+1=xk−f′(xk)+4f′(2xk+yk)+f′(yk)6f(xk)
Simpson method.
The Chebyshev-Halley family
Using the degree of logarithmic convexity Lf(xk)=f′(xk)2f(xk)f′′(xk) one builds a one-parameter family of third-order methods with second derivative: