Brainteasers & Logic
Infinite Series & Sums
Overview
Infinite series appear constantly in probability (geometric distributions, expected values of random sums) and in finance (discounted cash flows, perpetuities). The geometric series is the foundation. The self-referential trick — 'S equals something that involves S' — is particularly elegant and appears in many expected-value recursions. Mastering these series gives you quick answers to problems others grind through.
How to Recognize
- →Expected number of trials that follow a geometric pattern
- →'What does this series converge to?'
- →Recursion with a constant ratio < 1
- →Self-referential: 'S equals this expression that involves S'
Step-by-Step Approach
- 1.Geometric: 1 + r + r² + … = 1/(1−r) for |r| < 1
- 2.Differentiate to get Σ n·r^(n−1) = 1/(1−r)²
- 3.Self-referential: set up S = a + r·S → S = a/(1−r)
- 4.Telescoping: write aₙ = f(n)−f(n+1), sum collapses to f(1)−f(∞)
Key Formulas
Worked Examples
Problem
Derive E[geometric] using the series formula. P(heads) = p.
Solution
E[flips] = 1·P(H) + 2·P(TH) + 3·P(TTH) + … = Σₙ₌₁^∞ n·(1−p)^(n−1)·p.
Factor out p: E = p · Σₙ₌₁^∞ n·q^(n−1) where q = 1−p.
Use the derivative formula: Σ n·q^(n−1) = 1/(1−q)² = 1/p².
E = p · 1/p² = 1/p. ✓
Answer
. The series formula gives it directly: .
Common Mistakes
- !
Forgetting the convergence condition: geometric series only converges if |r| < 1.
- !
Off by one: is the first term r^0 = 1 or r^1 = r? Sum from n=0 vs n=1.
- !
For derivatives: Σ n·r^n = r·Σ n·r^(n-1) = r/(1-r)². The extra factor of r matters.
Practice Problems
Click "Show Answer" to revealSum: 1/2 + 2/4 + 3/8 + 4/16 + … = Σ n/2^n
Expected total profit if each trade independently makes 0 with probability 1/3, and you stop after your first $0 trade.