Key Idea: Arithmetic sequences add the same number every step — you'll find a single term or sum a list of terms. It's one of the most reliable Unit-1 questions, on both papers.
🔢 The two formulas
- the first term
- the common difference (the fixed step)
- the position — you add d only (n−1) times
- the sum of the first n terms
- use when you know u₁ and d
- use when you know the first and last term
If the exam gives an explicit rule like uₙ = 20 − 4n, then d = the coefficient of n (= −4) and u₁ = put n = 1 (= 16) — no working needed. A summand linear in the index (e.g. 3r + 2) is always arithmetic, with d = the coefficient of the index.
✏️ IB-style worked examples
IB-style question — find a term from two known terms
The 3rd term of an arithmetic sequence is 17 and the 7th term is 41. Find the 20th term.
Step by step:
Find d: subtract the values, divide by the number of steps (7 − 3).
Step back to u₁: from u₃, subtract two d's.
Now use the nth-term formula with n = 20.
u₂₀ = 119.
IB-style question — recover a term from a sum formula (Paper 1)
The sum of the first n terms of an arithmetic sequence is Sₙ = 2n² + 3n. Find u₁ and an expression for uₙ.
Step by step:
The first term is just S₁.
For any term use uₙ = Sₙ − Sₙ₋₁. Put (n − 1) in place of every n.
Subtract — the 2n² terms cancel, leaving a linear term.
u₁ = 5 and uₙ = 4n + 1 (check: u₁ = 5 ✓).
IB-style question — evaluate a sigma sum (Paper 1)
Without a calculator, evaluate Σr=1¹⁰ (3r + 2).
Step by step:
It's linear in r → arithmetic. First term (put r = 1):
Last term (put r = 10):
Count the terms: upper − lower + 1.
Use the first-and-last sum form.
The sum is 185.
IB-style question — maximum sum of a decreasing sequence (Paper 2)
An arithmetic sequence has first term 48 and common difference −3. Find the maximum value of Sₙ.
Step by step:
The sum is biggest at the last non-negative term — find where uₙ = 0.
So u₁₇ = 0; adding later (negative) terms only shrinks the total. Use the first-and-last form.
Maximum is S₁₇ = 408.
Important: You add d (n − 1) times, not n times: the 10th term is only 9 steps from u₁. Likewise, two terms are (later − earlier) steps apart, and a sigma sum has (upper − lower + 1) terms — the +1 is the one everyone drops.
Tap each card to reveal the answer.
Exam Tips
- Two formulas only: uₙ = u₁ + (n−1)d and Sₙ = (n/2)(…). Both are in the booklet.
- Find d from two terms by gap ÷ steps — count steps, not term numbers.
- Explicit rule → d is the coefficient of n; u₁ = put n = 1.
- Sum given as a quadratic? Use u₁ = S₁ and uₙ = Sₙ − Sₙ₋₁.
- Paper 2: sum(seq(…)) totals any Σ, and the table/graph finds a maximum sum.