Sequences & Series
Sequences and series are fundamental tools in mathematics for describing patterns, analyzing growth, and calculating sums. From compound interest to population models, they appear throughout science, finance, and everyday life.
This guide covers key definitions, arithmetic and geometric sequences, series formulas, sigma notation, convergence, worked examples, common mistakes, and a practice quiz.
1Introduction
Have you ever noticed patterns in numbers? Like the way your savings grow each month if you add a fixed amount, or how a population might double every decade? These are examples of sequences and series in action.
This topic is a fundamental part of high school mathematics, providing powerful tools to describe, analyze, and predict patterns. From finance to physics, understanding sequences and series helps us model and solve real-world problems.
Imagine saving $50 each week. After 1 week you have $50, after 2 weeks
Real-World Uses
Finance
Compound interest, loan repayments, and annuities all rely on geometric series.
Physics
Free-falling objects (arithmetic) and radioactive decay (geometric) follow sequence patterns.
Biology
Population growth is often modeled with geometric sequences (doubling, tripling, etc.).
Computer Science
Analyzing algorithm efficiency relies on summing series and understanding growth rates.
2Key Definitions
Sequence
An ordered list of numbers. Each number is called a term. Example: 2, 4, 6, 8, ...
Term (aₙ)
An individual number in a sequence. a₁ is the first term, a₂ the second, aₙ the nth.
Arithmetic Sequence
A sequence with a constant difference d between consecutive terms. Example: 5, 8, 11, 14 (d = 3).
Geometric Sequence
A sequence with a constant ratio r between consecutive terms. Example: 2, 6, 18, 54 (r = 3).
Series (Sₙ)
The sum of the terms of a sequence. Sₙ denotes the sum of the first n terms.
Sigma Notation (Σ)
A concise way to represent a series using the Greek letter sigma for "sum."
Common Difference (d)
The constant added between consecutive terms in an arithmetic sequence: d = aₙ − aₙ₋₁.
Common Ratio (r)
The constant multiplied between consecutive terms in a geometric sequence: r = aₙ/aₙ₋₁.
Convergence
A series converges if its sum approaches a finite value as the number of terms approaches infinity.
Divergence
A series diverges if its sum does not approach a finite value (grows infinitely or oscillates).
3Arithmetic Sequences
An arithmetic sequence is like climbing stairs, taking steps of the same size each time. Each term is found by adding the common difference d to the previous term.
General Term (nth term)
aₙ = a₁ + (n−1)d
a₁ = first term, n = term number, d = common difference
Worked Example
Find the 10th term of: 3, 7, 11, 15, ...
a₁ = 3, d = 7 − 3 = 4 (identify values)
a₁₀ = 3 + (10−1) × 4 (plug into formula)
= 3 + 9 × 4 = 3 + 36
a₁₀ = 39
To find d, subtract any term from the next: d = aₙ₊₁ − aₙ. If the differences aren't constant, it's not arithmetic!
4Geometric Sequences
A geometric sequence is like a chain reaction, where each step multiplies the previous one by a constant ratio r.
General Term (nth term)
aₙ = a₁ × rⁿ⁻₁
a₁ = first term, n = term number, r = common ratio
Worked Example
Find the 5th term of: 2, 6, 18, ...
a₁ = 2, r = 6/2 = 3 (identify values)
a₅ = 2 × 3⁴ (plug into formula)
= 2 × 81
a₅ = 162
To find r, divide any term by the previous one: r = aₙ₊₁/aₙ. If the ratios aren't constant, it's not geometric!
5Arithmetic Series
An arithmetic series is the sum of the terms in an arithmetic sequence. There are two equivalent formulas depending on what you know.
When aₙ is known
Sₙ = n/2 (a₁ + aₙ)
Average of first and last term, times the number of terms.
When d is known
Sₙ = n/2 (2a₁ + (n−1)d)
Derived by substituting aₙ = a₁ + (n−1)d into the first formula.
Worked Example
Find the sum of the first 10 terms of: 3, 7, 11, 15, ...
a₁ = 3, d = 4, n = 10 (identify)
a₁₀ = 3 + 9 × 4 = 39 (find last term)
S₁₀ = 10/2 × (3 + 39) (sum formula)
= 5 × 42
S₁₀ = 210
Enter values to find the nth term and sum of the first n terms.
6Geometric Series
A geometric series is the sum of the terms in a geometric sequence. There is a separate formula for finite and infinite series.
Finite (n terms)
Sₙ = a₁(1−rⁿ) / (1−r)
Valid when r ≠ 1.
Infinite (|r| < 1)
S∞ = a₁ / (1−r)
Only converges when |r| < 1. If |r| ≥ 1, the series diverges.
Worked Example 1: Finite
Find the sum of the first 5 terms of: 2, 6, 18, ...
a₁ = 2, r = 3, n = 5
S₅ = 2(1−3⁵) / (1−3)
= 2(1−243) / (−2)
= 2(−242) / (−2)
S₅ = 242
Worked Example 2: Infinite
Find the sum of: 1 + 1/2 + 1/4 + 1/8 + ...
a₁ = 1, r = 1/2
|r| = 1/2 < 1 → converges
S∞ = 1 / (1 − 1/2) = 1 / (1/2)
S∞ = 2
Convergence Check
Always check |r| < 1 before using the infinite sum formula. If |r| ≥ 1, the series diverges and there is no finite sum.
7Sigma Notation (Σ)
Sigma notation provides a compact way to write sums using the Greek letter Σ (sigma), which stands for "sum."
Σ f(k), k = m to n
k = index variable, m = lower limit, n = upper limit, f(k) = expression for each term
How to Read Sigma Notation
- Start at the lower limit: Substitute k = m into f(k) for the first term.
- Increment k by 1 and substitute again for the second term.
- Continue until k reaches the upper limit n.
- Add all resulting terms together.
Worked Example
Evaluate Σ(3i − 1) from i = 1 to 4
i=1: 3(1) − 1 = 2
i=2: 3(2) − 1 = 5
i=3: 3(3) − 1 = 8
i=4: 3(4) − 1 = 11
Sum = 2 + 5 + 8 + 11 = 26
Notice this is an arithmetic series with a₁ = 2 and d = 3.
When you see sigma notation, first write out a few terms to identify whether the series is arithmetic, geometric, or something else. Then apply the appropriate sum formula.
8Worked Examples
Example 1: Theatre Seats (Arithmetic)
A theatre has 20 seats in the first row, 22 in the second, 24 in the third, and so on. How many seats are in the 15th row?
a₁ = 20, d = 2, n = 15
a₁₅ = 20 + (15−1) × 2
= 20 + 28
a₁₅ = 48 seats
Example 2: Total Theatre Seats (Arithmetic Series)
What is the total number of seats in the first 15 rows?
a₁ = 20, a₁₅ = 48, n = 15
S₁₅ = 15/2 × (20 + 48)
= 7.5 × 68
S₁₅ = 510 seats
Example 3: Bacteria Growth (Geometric)
A bacteria culture doubles every hour. If there are 100 bacteria initially, how many after 5 hours?
a₁ = 100, r = 2, n = 6 (at 0h, 1h, ..., 5h = 6 terms)
a₆ = 100 × 2⁵
= 100 × 32
a₆ = 3200 bacteria
Example 4: Investment (Geometric Series)
$500 invested at the start of each year at 5% interest compounded annually. Total after 4 years?
Each investment grows: 500(1.05)⁴ + 500(1.05)³ + 500(1.05)² + 500(1.05)¹
a₁ = 500(1.05) = 525, r = 1.05, n = 4
S₄ = 525(1.05⁴ − 1) / (1.05 − 1)
= 525(0.21551) / 0.05
S₄ ≈