Sequences and Series Convergence
The precise conditions under which an infinite list of numbers settles toward a single value, or an infinite sum adds up to a finite total — the foundation behind every 'this estimator converges' claim in quant finance.
Prerequisites: Limits and Continuity
Adding up infinitely many numbers sounds like it should always give infinity — and sometimes it does. But a perpetuity that pays a shrinking coupon forever, or a discounted cash flow stretching to an infinite horizon, adds up infinitely many terms and still lands on a perfectly finite price. Distinguishing "infinite sum that blows up" from "infinite sum that settles on a finite number" — and knowing exactly which is which for a given formula — is what the theory of sequences and series convergence provides.
An analogy: walking half the remaining distance, forever
Walk halfway to a wall, then halfway again, then halfway again, forever. You take infinitely many steps, but you never walk more than the original distance to the wall — the total distance covered adds up to a finite number (twice the first step), even though the number of steps is unbounded. That's the essence of a convergent series: infinitely many nonzero pieces, but a finite total, because each new piece shrinks fast enough that the running total stops growing meaningfully. A series that keeps adding roughly the same-sized chunks forever, by contrast, has no hope of a finite total.
The math, one symbol at a time
A sequence converges to a limit if — the terms get arbitrarily close to as grows, in the same sense as an ordinary limit. A series is the sum of a sequence's terms, , and it converges to a value if its sequence of partial sums converges to as . A key workhorse is the geometric series:
In words: adding up a quantity that shrinks by a constant factor each term forever, provided that factor is smaller than 1 in size, gives a finite total — and that total has this simple closed form. If , the terms don't shrink fast enough (or grow), and the series diverges to infinity.
Worked example 1: pricing a growing perpetuity
A perpetuity pays $100 next year, growing at 2% per year forever, discounted at 7%. Each year's discounted payment is , which is a geometric series with ratio . Since , the series converges, and the price is \frac{100/1.07}{1 - 0.9533} = \frac{93.46}{0.0467} \approx \2001r$ stays below 1.
Worked example 2: checking convergence with the ratio test
Does converge? Apply the ratio test: compute . Since this limit is less than 1, the series converges (its actual sum happens to be exactly 2, though the ratio test only confirms convergence, not the value). Compare with (the harmonic series): its ratio test limit is exactly 1 — inconclusive — and in fact this series diverges despite each term shrinking to zero, a classic case where "the terms go to zero" is necessary but not sufficient for convergence.
Watch a running partial sum settle toward its limiting value as more terms are added — for a convergent series the curve flattens out; for a divergent one it keeps climbing with no ceiling in sight.
What this means in practice
Every perpetuity or terminal-value formula in finance, the convergence of numerical methods used to price derivatives, and the theoretical justification for estimators improving as more data arrives (see The Law of Large Numbers) all rest on series and sequence convergence. Recognizing a formula as a geometric series is what makes perpetuity and growing-annuity valuation formulas derivable in closed form rather than needing an infinite sum computed numerically. It also matters for judging how fast a numerical method is worth trusting: a Monte Carlo price estimate or an iterative optimizer's running solution is itself a sequence, and knowing whether — and how quickly — that sequence converges tells you whether stopping after a finite number of iterations gives an answer close to the true limit, or whether you've stopped too early while the sequence is still wandering. The renewal reward theorem (see The Renewal Reward Theorem) leans on a related convergence idea, applying a law-of-large-numbers argument to long-run averages of repeating cycles rather than to a simple infinite sum.
A series converges to a finite total exactly when its partial sums settle on a limit — the geometric series for is the workhorse example, and it's the mathematical engine behind every perpetuity valuation formula.
Terms shrinking to zero is necessary for a series to converge, but it is not sufficient — the harmonic series is the canonical counterexample, with every term shrinking to zero yet the sum still diverging to infinity, just very slowly (it takes about terms to exceed 100). Never conclude a series converges just because you can see its terms getting small; use an actual convergence test (ratio test, comparison test, or a known closed form) to be sure.
Related concepts
Practice in interviews
Further reading
- Spivak, Calculus, ch. 22-23