Every numerical estimate carries a price tag: error. Approximate a derivative by a finite difference and you get the right answer plus a leftover term that shrinks as the step size goes to zero. The trouble is that shrinking costs computation, and at some point floating-point rounding wins anyway.
Richardson extrapolation, invented by Lewis Fry Richardson around 1910 and published in 1927, offers a shortcut. Instead of taking one estimate at a small , take two estimates — one at and one at — and combine them in a ratio that makes the dominant error term cancel exactly. The result is an estimate that behaves as if you had used a much smaller step without actually computing at that step.
The trick is purely algebraic: if the error expands as , then the right linear combination of and eliminates the term and leaves you with an error of order — one whole power better, for free.
Richardson's idea generalizes: apply it again to two second-order estimates and you reach fourth order. This iterated process is the foundation of Romberg integration, one of the most accurate practical quadrature methods available.
Comments
Loading comments...