Geometric Series
Context: FIT1058_MOC, FIT2004_MOC Β· the sum of a geometric sequence Β· finite closed form + convergent infinite case Β· companion to Arithmetic Series FIT2004 use: the engine of every divide-and-conquer level-sum (Solving Recurrences (Telescoping)) β counts the nodes/leaves of a complete binary tree, bounds total recursion work by a constant multiple of the top level.
Quick Revision
- π― Objective: sum β ().
- π¦ Core Components: finite closed form β infinite if .
- β‘ Key Constraint: converges iff ; handled separately ().
π Core
1. The Series
- Definition β first term , ratio : .
- Closed form β (); if .
2. Finite Sum Trick
- Multiply by β βΉ .
- Check β : .
3. Infinite Sum
- β βΉ .
- β diverges (/) or no limit ().
Key identities:
4. The Two Corollaries Algorithm Analysis Uses
Both drop out of by substituting β no new induction needed.
- β doubling/branching β β nodes of a complete Binary Tree of height ; also the leaf level alone exceeds all levels above it combined () β why leaf-dominated recursions are .
- β halving/shrinking β β a strict, -independent bound: work that halves each level totals less than twice the first level.
- Why the strict finite bound matters β it converts β levels of shrinking workβ into without an infinite-series limit argument β the move behind auxiliary space for shrinking recursive frames and .
When It Flips: vs Arithmetic Series β arithmetic always diverges in size (terms don't shrink); geometric converges exactly when terms decay (). For , β the node count of a perfect Binary Tree.
π Exam Execution Trace
Manual Execution Trace
, 5 terms:
| Step / State | term | running | |
|---|---|---|---|
| 0 (Init) | 0 | 3 | 3 |
| 1 | 1 | 6 | 9 |
| 2 | 2 | 12 | 21 |
| 3 | 3,4 | 24,48 | 45,93 |
β οΈ Common Mistakes
- π‘ breaks the formula β the denominator ; then every term is so . Infinite sum needs the strict .
- π‘ Donβt re-induct for a corollary β and are substitutions into the general closed form; a fresh induction proof wastes exam time unless it is explicitly demanded.
βοΈ Practice
Practice 1: Prove for by induction.
- Hint: In the step, add to the hypothesis over a common denominator.
Answer
- Basis (): LHS ; RHS . β
- Hypothesis: assume for some .
- Step:
- Short answer: basis and step hold βΉ true for all , . Q.E.D.
- Why: is a hypothesis, not a footnote β the algebra divides by at every line; at the statement is replaced by .
Practice 2: Without a new induction, obtain (a) and (b) a constant bound on . State the used.
- Hint: Substitute into Practice 1βs result and simplify.
Answer
- (a) : .
- (b) : for all β strict, and independent of .
- Why: Same identity, opposite regimes β makes the last term dominate (leaf-heavy recursion trees); makes the first term dominate and caps the whole sum at a constant multiple of it (root-heavy recursions and shrinking stack frames).
π§ Active Recall
Derive the finite geometric sum and when it needs different handling.
- Hint: Multiply and subtract.
Answer
- Short answer: βΉ ; requires (else ).
- Why: Shift β multiplying by shifts terms by one.
When does an infinite geometric series converge, and why does an arithmetic one never?
- Hint: Term decay.
Answer
- Short answer: Converges iff (then ); arithmetic terms donβt decay.
- Why: β only decaying terms give a finite limit.