Arithmetic: sum of n terms
\( S_n = \frac{n}{2}[2a + (n-1)d] \)
Geometric: nth term
\( T_n = ar^{n-1} \)
Geometric: sum of n terms
\( S_n = \frac{a(r^n - 1)}{r - 1}, \; r \neq 1 \)
Convergent geometric: sum to infinity
\( S_\infty = \frac{a}{1 - r}, \; -1 < r < 1 \)
Alternative sum formula
\( S_n = \frac{n}{2}(a + l) \) where \( l \) is the last term
1. Arithmetic Sequences
An arithmetic sequence is a list of numbers where you add the same value each time to get from one term to the next. That value is called the common difference, and we call it \( d \).
The Key Idea
If you can get from any term to the next by adding (or subtracting) the same number, it's arithmetic.
For example: \( 3; \; 7; \; 11; \; 15; \; \ldots \) — here \( d = 4 \) because each term is 4 more than the last.
Or: \( 20; \; 14; \; 8; \; 2; \; \ldots \) — here \( d = -6 \) (subtracting 6 each time).
The Formula
To find any term directly (without listing them all), use:
$$ T_n = a + (n-1)d $$
where \( a \) = first term, \( d \) = common difference, \( n \) = position of the term.
Worked Example
Find the 20th term of: \( 5; \; 9; \; 13; \; 17; \; \ldots \)
\( a = 5, \quad d = 9 - 5 = 4, \quad n = 20 \)
\( T_{20} = 5 + (20-1)(4) = 5 + 76 = 81 \)
To find \( d \), take any term and subtract the one before it: \( d = T_2 - T_1 \) (or \( T_3 - T_2 \), etc.).
Q1Easy
Find the 15th term of the sequence: \( 2; \; 7; \; 12; \; 17; \; \ldots \)
Solution
\( a = 2, \quad d = 7 - 2 = 5, \quad n = 15 \)
\( T_{15} = 2 + (15-1)(5) = 2 + 70 = 72 \)
Q2Medium
The 3rd term of an arithmetic sequence is 11 and the 7th term is 27. Find \( a \) and \( d \).
Solution
From the formula: \( T_3 = a + 2d = 11 \) ... (1)
\( T_7 = a + 6d = 27 \) ... (2)
Subtract (1) from (2): \( 4d = 16 \), so \( d = 4 \)
Substitute back: \( a + 8 = 11 \), so \( a = 3 \)
Q3Medium
Which term of the sequence \( 100; \; 93; \; 86; \; 79; \; \ldots \) is equal to 2?
Solution
\( a = 100, \quad d = -7 \)
Set \( T_n = 2 \): \( 100 + (n-1)(-7) = 2 \)
\( 100 - 7n + 7 = 2 \)
\( 107 - 7n = 2 \)
\( 7n = 105 \), so \( n = 15 \)
The 15th term is equal to 2.
2. Arithmetic Series
A series is what you get when you add up the terms of a sequence. An arithmetic series is the sum of terms in an arithmetic sequence.
The Sum Formula
$$ S_n = \frac{n}{2}[2a + (n-1)d] $$
This gives you the sum of the first \( n \) terms. If you know the last term \( l \), you can also use:
$$ S_n = \frac{n}{2}(a + l) $$
Worked Example
Find the sum of the first 30 terms of: \( 4; \; 10; \; 16; \; 22; \; \ldots \)
\( a = 4, \quad d = 6, \quad n = 30 \)
\( S_{30} = \frac{30}{2}[2(4) + (30-1)(6)] \)
\( = 15[8 + 174] = 15 \times 182 = 2730 \)
Finding a Single Term from the Sum
A very useful trick: \( T_n = S_n - S_{n-1} \). This means to find the 10th term, compute \( S_{10} - S_9 \).
Q4Easy
Find the sum of the first 20 terms of: \( 1; \; 4; \; 7; \; 10; \; \ldots \)
A geometric series has \( a = 5 \) and \( r = 2 \). If \( S_n = 635 \), find \( n \).
Solution
\( \frac{5(2^n - 1)}{2 - 1} = 635 \)
\( 5(2^n - 1) = 635 \)
\( 2^n - 1 = 127 \)
\( 2^n = 128 = 2^7 \)
\( n = 7 \)
5. Convergent Geometric Series
Here's where it gets interesting. If the common ratio \( r \) is between \( -1 \) and \( 1 \) (exclusive), the terms get smaller and smaller. The sum approaches a finite limit even if you add infinitely many terms.
Sum to Infinity
$$ S_\infty = \frac{a}{1 - r} \quad \text{only if } -1 < r < 1 $$
The series is said to converge. If \( |r| \geq 1 \), the series diverges (no finite sum).
A convergent geometric series has a first term of 10 and \( S_\infty = 40 \). Find \( r \).
Solution
\( \frac{10}{1 - r} = 40 \)
\( 10 = 40(1 - r) = 40 - 40r \)
\( 40r = 30 \)
\( r = \frac{3}{4} \)
Check: \( |r| = \frac{3}{4} < 1 \). Valid.
Q14Hard
For which values of \( x \) will the series \( (x+1) + (x+1)^2 + (x+1)^3 + \ldots \) converge?
Solution
This is geometric with \( a = (x+1) \) and \( r = (x+1) \).
For convergence: \( -1 < r < 1 \), i.e. \( -1 < x + 1 < 1 \).
\( -2 < x < 0 \)
But also \( r \neq 0 \) (otherwise \( a = 0 \) and the series is trivially 0). So we also exclude \( x = -1 \).
Answer: \( x \in (-2, \; 0), \; x \neq -1 \)
6. Sigma Notation
Sigma notation (\( \sum \)) is a compact way to write a sum. The symbol \( \sum \) means "add up".
How to Read It
\( \displaystyle \sum_{k=1}^{5} (2k+1) \) means: substitute \( k = 1, 2, 3, 4, 5 \) into \( 2k + 1 \) and add them all up.
\( = 3 + 5 + 7 + 9 + 11 = 35 \)
Look at the general term to decide if it's arithmetic or geometric. If the term contains \( k \) (linear), it's arithmetic. If it contains \( r^k \), it's geometric.