The Complete Guide to Infinite Geometric Series Formulas
What Is an Infinite Geometric Series?
An infinite geometric series is a sequence of numbers where each term is found by multiplying the previous term by a fixed number called the common ratio. When you add all these terms together without stopping, you get an infinite sum.
Here's the thing: most infinite sums blow up to infinity. But geometric series are special. Under the right conditions, they settle down to a finite number. That's what makes them useful in calculus, physics, finance, and computer science.
The Core Formula
The sum of an infinite geometric series is:
S = a / (1 - r)
Where:
- S is the sum
- a is the first term
- r is the common ratio
This formula only works when |r| < 1. If |r| ≥ 1, the series diverges. There is no finite sum.
When Does It Converge?
The convergence depends entirely on the common ratio. Here's the breakdown:
The Three Cases
- |r| < 1: The series converges. It approaches a finite limit.
- |r| > 1: The series diverges. It grows without bound.
- r = 1: The series is just a + a + a + ... which goes to infinity.
- r = -1: The series oscillates between a and 0. No sum exists.
That's it. No exceptions. If someone asks whether an infinite geometric series converges, check |r| first.
Practical Examples
Example 1: Simple Decimal
Consider 0.5 + 0.25 + 0.125 + 0.0625 + ...
Here, a = 0.5 and r = 0.5. Using the formula:
S = 0.5 / (1 - 0.5) = 0.5 / 0.5 = 1
This makes sense. The infinite decimal 0.999... equals 1, and this series approaches the same value.
Example 2: Alternating Series
Consider 1 - 1/2 + 1/4 - 1/8 + 1/16 - ...
Here, a = 1 and r = -1/2. Since |r| = 0.5 < 1, it converges:
S = 1 / (1 - (-1/2)) = 1 / (1 + 0.5) = 1 / 1.5 = 2/3
Example 3: Diverging Series
Consider 2 + 6 + 18 + 54 + ...
Here, a = 2 and r = 3. Since |r| > 1, this series diverges. The formula doesn't apply. The sum is infinite.
Formula Variations You Need to Know
The Finite Sum Formula
Sometimes you need the sum of the first n terms:
Sₙ = a(1 - rⁿ) / (1 - r)
This works for any r except r = 1. When |r| < 1 and n approaches infinity, rⁿ approaches 0, and this reduces to the infinite sum formula.
The Alternative Form
You can also write it as:
S = a / (1 - r) is equivalent to S = a / (1 - r)
Same thing. Just make sure you isolate r correctly when solving problems.
Common Applications
These formulas aren't just textbook exercises. They show up in real problems:
- Finance: Calculating present value of perpetuities. A bond that pays $100 forever with 5% discount rate? That's 100/0.05 = $2000.
- Physics: Analyzing bouncing balls. A ball dropped from height h that bounces back to 75% of its previous height travels a total distance of h + 2h(0.75)/(1-0.75).
- Computer Science: Analyzing algorithm complexity and recursive function costs.
- Signal Processing: Z-transforms in digital filters use geometric series concepts.
Comparing Series Behavior
| First Term (a) | Common Ratio (r) | |r| Status | Result |
|---|---|---|---|
| 1 | 0.5 | |r| < 1 | Converges to 2 |
| 3 | 0.25 | |r| < 1 | Converges to 4 |
| 2 | -0.5 | |r| < 1 | Converges to 4/3 |
| 5 | 2 | |r| > 1 | Diverges |
| 10 | -1.5 | |r| > 1 | Diverges |
| 4 | 1 | |r| = 1 | Diverges |
How to Solve Any Infinite Geometric Series Problem
Step 1: Identify the First Term
Look at the first number in the sequence. That's a.
Step 2: Find the Common Ratio
Divide any term by the previous term. r = term₂ / term₁
Always check: does this ratio stay constant? If yes, it's geometric.
Step 3: Check Convergence
Calculate |r|. If |r| ≥ 1, stop here. The series has no finite sum.
Step 4: Apply the Formula
If |r| < 1, plug values into S = a / (1 - r).
Step 5: Simplify
Reduce fractions. Check your arithmetic. Common mistakes happen here.
Common Mistakes to Avoid
- Forgetting to check |r|. Students apply the formula to diverging series constantly. Always verify convergence first.
- Misidentifying the first term. Some series don't start at n=0. Read carefully.
- Sign errors with negative r. r can be negative. That's fine. Just keep the sign when calculating 1 - r.
- Rounding too early. Keep exact fractions until the final answer unless told otherwise.
The Bottom Line
The infinite geometric series formula is straightforward: S = a / (1 - r). The only variable that matters is whether |r| < 1. Everything else is arithmetic.
Identify a, find r, check convergence, plug in the numbers. That's the entire process. No shortcuts, no tricks.