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 / Statetermrunning
0 (Init)033
1169
221221
33,424,4845,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

🧠 Active Recall