Geometric Series Formulas- Complete Reference Guide
What Is a Geometric Series?
A 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. That's the whole concept. No tricks.
For example: 2, 6, 18, 54... Each term multiplies by 3. The ratio is 3.
Or: 100, 50, 25, 12.5... Each term multiplies by 0.5. The ratio is 0.5.
The Core Formulas You Need
Sum of a Finite Geometric Series
When you have a set number of terms, use this formula:
Sn = aā Ć (1 - rn) / (1 - r)
Where:
- aā = the first term
- r = the common ratio
- n = the number of terms
This formula works for any r except 1. If r equals 1, the series is just n Ć aā. That's it.
Sum of an Infinite Geometric Series
When the series continues forever, the formula changes:
Sā = aā / (1 - r)
Here's the catch: this only works when |r| < 1. If |r| ā„ 1, the series diverges. It grows without bound or oscillates forever. No sum exists.
The Nth Term Formula
Need to find a specific term without listing everything?
an = aā Ć rn-1
This gives you the nth term directly. Useful when n is large and you don't want to calculate every intermediate term.
Recursive Form
Sometimes you need the recursive definition:
- aā = first term
- an = an-1 Ć r
Each term equals the previous term multiplied by r. Simple.
Quick Reference Table
| What You Know | Formula to Use | Condition |
|---|---|---|
| Sum of n terms | Sn = aā(1 - rn) / (1 - r) | r ā 1 |
| Sum to infinity | Sā = aā / (1 - r) | |r| < 1 |
| Nth term | an = aā Ć rn-1 | All cases |
| Common ratio | r = an / an-1 | Any consecutive terms |
Working Examples
Example 1: Finite Series Sum
Find the sum of 3 + 6 + 12 + 24 + 48 (5 terms).
Here: aā = 3, r = 2, n = 5
Sā
= 3 Ć (1 - 2āµ) / (1 - 2)
Sā
= 3 Ć (1 - 32) / (-1)
Sā
= 3 Ć (-31) / (-1)
Sā
= 93
Quick check: 3 + 6 + 12 + 24 + 48 = 93. Correct.
Example 2: Infinite Series
Sum of 1 + 1/2 + 1/4 + 1/8 + ... to infinity.
Here: aā = 1, r = 1/2
Sā = 1 / (1 - 1/2) = 1 / (1/2) = 2
The sum approaches 2 but never exceeds it. This is why infinite geometric series with |r| < 1 converge.
Example 3: Finding the 50th Term
Given: 5, 15, 45, 135... Find aā ā.
aā = 5, r = 3
aā ā = 5 Ć 3ā“ā¹
That's a huge number. The formula handles it without listing 50 terms. That's the point.
How to Solve Any Geometric Series Problem
- Identify the first term (aā) ā The very first number in your sequence.
- Find the common ratio (r) ā Divide any term by the previous term. Do this twice to confirm consistency.
- Determine if the series is finite or infinite ā Infinite only works if |r| < 1.
- Pick the right formula ā Use the table above based on what you're solving for.
- Plug in and calculate ā Watch your order of operations. Exponents before multiplication.
Common Mistakes to Avoid
- Using the infinite formula when |r| ā„ 1 ā This gives you garbage. Always check |r| first.
- Forgetting that n starts at 1 ā The formula an = aā Ć rn-1 uses n-1 as the exponent, not n.
- Wrong sign in the denominator ā When r > 1, (1 - r) is negative. That's fine. Don't flip it.
- Not simplifying rn ā If n is large, calculate carefully or use logarithms.
When Geometric Series Show Up in Real Life
These formulas aren't abstract. They appear in:
- Finance ā Compound interest calculations use geometric series. Every interest payment becomes the principal for the next period.
- Physics ā Damped oscillations follow geometric decay patterns.
- Computer Science ā Algorithm analysis often involves geometric sums when counting operations.
- Probability ā Some probability distributions use infinite geometric series to find expected values.
The Bottom Line
You need four things to work with geometric series:
- The first term
- The common ratio
- The correct formula for your situation
- Basic algebra skills
That's the entire skill set. Memorize the formulas, verify your ratio twice, and check whether your infinite series actually converges before you start calculating.