Geometric Sequences: The Power of Patterns
A geometric sequence is an ordered list of numbers where each term after the first is found by multiplying the previous one by a fixed, non-zero number called the common ratio (r). They are essential for modeling exponential growth and decay, such as in population studies, finance (compound interest), and computer science.
Step-by-Step Guide
- Identify the First Term (a₁): This is the starting number of your sequence.
- Find the Common Ratio (r): Divide any term by the term immediately before it: r = aₙ / aₙ₋₁.
- Use the Explicit Formula: To find the nth term, use: aₙ = a₁ * r⁽ⁿ⁻¹⁾.
- Use the Sum Formula: To find the sum of the first n terms, use: Sₙ = a₁(1 - rⁿ) / (1 - r) for r ≠ 1.
Worked Examples
Example 1: Finding a Specific Term
Find the 8th term of the sequence: 3, 6, 12, 24, ...
- a₁ = 3
- r = 6 / 3 = 2
- a₈ = 3 * 2⁽⁸⁻¹⁾ = 3 * 2⁷ = 3 * 128 = 384
Example 2: Finding the Sum
Find the sum of the first 5 terms of: 1000, 500, 250, ...
- a₁ = 1000
- r = 500 / 1000 = 0.5
- S₅ = 1000(1 - 0.5⁵) / (1 - 0.5) = 1000(1 - 0.03125) / 0.5 = 1000(0.96875) / 0.5 = 1937.5
Common Mistakes to Avoid ⚠️
- Incorrect Exponent: In the explicit formula aₙ = a₁ * r⁽ⁿ⁻¹⁾, the exponent is (n-1), not n. You multiply by the common ratio one fewer time than the term number.
- Misidentifying 'r': Ensure you divide a term by its preceding term (a₂/a₁), not the other way around. A negative ratio is possible!
- Sum Formula Error: The sum formula Sₙ = a₁(1 - rⁿ)/(1 - r) is only valid when r ≠ 1. If r = 1, the sequence is constant, and Sₙ = n * a₁.
Tips & Tricks
- 🧠 Memory Aid: For the term formula, remember "First in Line, Ratio Behind, Power is One Less."
- 📈 Quick Check: In a growing sequence, r > 1. In a decaying sequence, 0 < r < 1. If the terms alternate signs, r is negative.
- ✂️ Shortcut: If you know two non-consecutive terms, you can find the ratio by solving for the root. If a₁=2 and a₄=54, then 2 * r³ = 54, so r³=27, r=3.
How to Practice
To master geometric sequences, try these practice strategies:
- Start by generating sequences from a given a₁ and r.
- Practice finding the common ratio from both increasing and decreasing sequences.
- Solve real-world problems involving compound interest or half-life decay.
- Challenge yourself with problems that require using both the nth-term and the sum formulas together.