Convergence Analysis
Understanding convergence rates and basins of attraction is essential for selecting appropriate root-finding algorithms and initial guesses. Different algorithms offer trade-offs between convergence speed, robustness, and computational cost.
Let converge to with for all . The sequence has order of convergence if: for some constant . The case with is linear convergence, is quadratic convergence, and is superlinear convergence.
Higher convergence order means faster asymptotic convergence, but requires more regularity of and more computational work per iteration. The order characterizes how rapidly errors decrease once the iteration enters a neighborhood of the root.
Finding starting from :
Bisection (linear, rate 1/2):
- 10 iterations: error
- 20 iterations: error
Secant (order 1.618):
- 5 iterations: error
- 7 iterations: error
Newton (quadratic):
- 4 iterations: error
- 5 iterations: error
Newton converges fastest asymptotically but requires computing at each step.
Basin of Attraction: For an iterative method with fixed point (so ), the basin of attraction is the set of initial values for which .
Newton's method can have fractal basin boundaries in the complex plane, meaning arbitrarily close initial guesses may converge to different roots or diverge. This motivates hybrid methods that combine global convergence guarantees with fast local convergence.
For Newton's method, if near with and , there exists such that guarantees quadratic convergence. The size of depends on the ratio : larger second derivatives or smaller first derivatives reduce the basin of attraction.
Multiple roots () reduce Newton's method to linear convergence. If has a zero of multiplicity at : then the error satisfies:
This motivates modified methods that detect multiplicity or use deflation techniques to remove known roots.
Practical stopping criteria must balance multiple factors: absolute tolerance , relative tolerance , and residual tolerance . Ill-conditioned roots (where ) can have small residuals but large errors in , requiring careful criterion selection.