A sequence creeps toward its limit; you are impatient. Aitken's Δ² process reconstructs the limit from just three consecutive terms, assuming the error shrinks geometrically: ŷ = xn − (Δxn)² / Δ²xn. It effectively fits the tail to a geometric model and jumps to where it is heading, often turning a sequence that needed thousands of terms into a handful. It is the accelerator under Steffensen's root-finder and a cousin of the Shanks transformation and Richardson extrapolation. Reconstruction of a value never actually reached: the limit, recovered from the structure of the convergence rather than by waiting for it.
Three terms of a slowly converging sequence. The demo applies Aitken's Δ² to reconstruct the limit directly: live demo
“To know the limit you must run the sequence out.” — if the error is roughly geometric, three terms fix where it is going, and Aitken jumps there. The limit reconstructed, not awaited. cited
Assume the tail is geometric and three terms pin the limit; subtract the modelled remaining error and arrive early. The destination reconstructed from the shape of the approach. Aitken 1926
On the canonical compiler, the sequence 1, 0.5, 0.25 (heading to 0) is accelerated by Aitken's Δ² straight to its limit 0: