01 — What Is a Geometric Series?
A geometric series is obtained by adding the terms of a geometric sequence, a sequence in which each term is obtained by multiplying the previous one by a fixed constant called the common ratio r.
The general form looks like this:
Some concrete examples to fix the idea:
- r = 1/2: 1 + 1/2 + 1/4 + 1/8 + 1/16 + ⋯
- r = 3: 2 + 6 + 18 + 54 + 162 + ⋯
- r = −1/3: 1 − 1/3 + 1/9 − 1/27 + ⋯ (alternating signs)
- r = 1: 5 + 5 + 5 + 5 + ⋯ (constant, diverges)
Geometric series sit at the crossroads of algebra and calculus. They are the simplest infinite series to sum, and the formulas for Taylor series, power series, and even compound interest all trace their roots here.
02 — The Partial Sum Formula
The n-th partial sum Sₙ is the sum of the first n terms (starting from n = 0, so there are n + 1 terms):
Sₙ = a + ar + ar² + ⋯ + arⁿ
Deriving the Formula
Multiply both sides by r:
Sₙ = a + ar + ar² + ⋯ + arⁿ
r · Sₙ = ar + ar² + ⋯ + arⁿ + arⁿ⁺¹
Subtract the second line from the first. All middle terms cancel (this is called a telescoping subtraction):
Sₙ − r·Sₙ = a − arⁿ⁺¹
Sₙ(1 − r) = a(1 − rⁿ⁺¹)
03 — Infinite Sum and Convergence
What happens to Sₙ as n → ∞? It depends entirely on r:
The infinite geometric series Σ arⁿ converges if and only if |r| < 1.
When |r| < 1, the sum is S = a / (1 − r).
When |r| ≥ 1, the series diverges (the partial sums grow without bound or oscillate).
Proof of the Infinite Sum Formula
Start from the partial sum Sₙ = a(1 − rⁿ⁺¹)/(1 − r). Take the limit as n → ∞:
If |r| < 1, then rⁿ⁺¹ → 0 as n → ∞
∴ S = lim Sₙ = a(1 − 0)/(1 − r) = a / (1 − r)
If |r| > 1, then |rⁿ⁺¹| → ∞, so Sₙ diverges. If r = 1, every term equals a ≠ 0, so the sum clearly diverges. If r = −1, the partial sums oscillate between 0 and a, with no limit.
04 — Interactive Convergence Visualiser
Partial sums Sₙ approaching S∞: adjust a and r
05 — Partial Sums Table: Watching Convergence in Action
For a = 1 and r = 1/2, the partial sums creep towards S∞ = 2:
| n | Term arⁿ | Partial sum Sₙ | Distance from S∞ = 2 |
|---|---|---|---|
| 0 | 1 | 1 | 1.000000 |
| 1 | 0.5 | 1.5 | 0.500000 |
| 2 | 0.25 | 1.75 | 0.250000 |
| 3 | 0.125 | 1.875 | 0.125000 |
| 4 | 0.0625 | 1.9375 | 0.062500 |
| 5 | 0.03125 | 1.96875 | 0.031250 |
| 8 | 0.003906 | 1.996094 | 0.003906 |
| 10 | 0.000977 | 1.999023 | 0.000977 |
| ∞ | → 0 | 2 (exact) | 0 |
Notice the error at step n equals exactly ar^(n+1): the first term not yet included. The partial sum always falls short of S∞ by precisely one more geometric term.
06 — Zeno's Paradox: Why Infinite Steps Can Take Finite Time
Around 450 BC, the Greek philosopher Zeno of Elea posed a paradox: to cross a room, you must first cross half of it. Then half of what remains. Then half again. Since there are infinitely many steps, surely you can never reach the other side?
Zeno's Paradox, Infinite Halvings on a Number Line
Mathematically: Σn=1∞ (1/2)ⁿ = (1/2)/(1 − 1/2) = 1. The series converges to 1 because, while there are infinitely many terms, they get small fast enough to sum to a finite value.
07 — Real-World Application: Present Value & Finance
Geometric series are the backbone of financial mathematics. If you receive £P at the end of each year forever (a perpetuity), and money can earn an annual interest rate of i, the present value of all those payments is:
The same logic underlies mortgage calculations, bond pricing, and GDP multiplier effects in economics: all involve summing a geometric series of discounted future cash flows.
08 — Ten Worked Examples
Find the sum of 1 + 1/2 + 1/4 + 1/8 + ⋯
S = a / (1 − r) = 1 / (1 − 1/2) = 1 / (1/2)Find the sum: 6 − 2 + 2/3 − 2/9 + ⋯
−1/3. Check: |r| = 1/3 < 1 ✓S = 6 / (1 − (−1/3)) = 6 / (4/3) = 6 × 3/4Find S₅ (the sum of the first 6 terms, n = 0 to 5) of 3 + 6 + 12 + 24 + ⋯
S₅ = 3 · (1 − 2⁶) / (1 − 2) = 3 · (1 − 64) / (−1)= 3 · (−63) / (−1) = 3 × 63Find the sum: Σn=0∞ 5 · (2/3)ⁿ
S = 5 / (1 − 2/3) = 5 / (1/3)Find Σn=1∞ 4 · (1/3)ⁿ
S_full = 4/(1 − 1/3) = 4/(2/3) = 6S = 6 − 4 = 2S = (4/3)/(1 − 1/3) = (4/3)/(2/3) = 2 ✓Express 0.̄7̄2̄ = 0.727272… as a fraction using a geometric series.
0.72 + 0.0072 + 0.000072 + ⋯S = (72/100) / (1 − 1/100) = (72/100) / (99/100) = 72/9972/99 = 8/11An infinite geometric series has first term a = 8 and sum S = 24. Find r.
24 = 8 / (1 − r)1 − r = 8/24 = 1/3r = 1 − 1/3 = 2/3Does Σn=0∞ 3 · (−1.2)ⁿ converge? If so, find its sum.
An endowment pays £2,000 at the end of each year forever. If the discount rate is 4% per year, what is the present value?
PV = (2000/1.04) / (1 − 1/1.04) = (2000/1.04) / (0.04/1.04)= 2000 / 0.04A ball is dropped from a height of 10 m. After each bounce it rises to 60% of its previous height. Find the total distance the ball travels.