You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
A recurrence relation defines each term of a sequence using the previous term(s). Instead of giving an explicit formula for u(n) in terms of n, we give a rule connecting u(n+1) to u(n), along with a starting value. This is an important topic in the Edexcel A-Level (9MA0) specification.
| Term | Meaning |
|---|---|
| Recurrence relation | A formula that gives u(n+1) in terms of u(n) (and possibly n) |
| Initial condition | The starting value, e.g. u(1) = 3, needed to generate the sequence |
| Increasing sequence | u(n+1) > u(n) for all n |
| Decreasing sequence | u(n+1) < u(n) for all n |
| Periodic sequence | A sequence that repeats with a fixed period: u(n+k) = u(n) for all n |
A recurrence relation has two parts:
Both are needed to uniquely define a sequence.
A sequence is defined by u(n+1) = 2u(n) + 3, u(1) = 1. Find the first five terms.
First five terms: 1, 5, 13, 29, 61
A sequence is defined by u(n+1) = u(n)² - 2, u(1) = 3. Find u(4).
| Sequence type | Recurrence relation |
|---|---|
| Arithmetic (common difference d) | u(n+1) = u(n) + d |
| Geometric (common ratio r) | u(n+1) = r x u(n) |
Write a recurrence relation for the sequence 5, 8, 11, 14, ...
This is arithmetic with d = 3. The recurrence relation is:
u(n+1) = u(n) + 3, u(1) = 5
Write a recurrence relation for the sequence 3, 6, 12, 24, ...
This is geometric with r = 2. The recurrence relation is:
u(n+1) = 2u(n), u(1) = 3
A sequence is increasing if u(n+1) > u(n) for all n >= 1.
Example: u(n+1) = u(n) + 5, u(1) = 2 gives 2, 7, 12, 17, ... (always increasing since we add 5)
A sequence is decreasing if u(n+1) < u(n) for all n >= 1.
Example: u(n+1) = 0.5 x u(n), u(1) = 64 gives 64, 32, 16, 8, 4, ... (always decreasing)
A sequence is periodic with period k if u(n+k) = u(n) for all n.
A sequence is defined by u(n+1) = 1/u(n), u(1) = 3. Show it is periodic and state the period.
The sequence repeats: 3, 1/3, 3, 1/3, ...
The sequence is periodic with period 2.
A sequence is defined by u(n+1) = 6 - u(n), u(1) = 1. Find the first six terms and describe the behaviour.
The sequence is periodic with period 2: 1, 5, 1, 5, ...
If a sequence defined by a recurrence relation converges to a limit L, then as n tends to infinity, both u(n) and u(n+1) approach L. We can substitute L into the recurrence relation.
The sequence u(n+1) = (u(n) + 4) / 3, u(1) = 10, converges to a limit L. Find L.
At the limit: L = (L + 4) / 3
3L = L + 4
2L = 4
L = 2
Check: the sequence is 10, 14/3, 26/9, ... and does indeed approach 2.
A sequence is defined by u(n+1) = sqrt(5u(n) + 6), u(1) = 2. Find the limit to which the sequence converges.
At the limit: L = sqrt(5L + 6)
L² = 5L + 6
L² - 5L - 6 = 0
(L - 6)(L + 1) = 0
L = 6 or L = -1
Since all terms are positive (we start at 2 and take square roots), L = 6.
| Tip | Detail |
|---|---|
| Always state u(1) | A recurrence relation without an initial condition does not define a unique sequence |
| Show enough terms | To identify periodic behaviour, compute at least one full cycle |
| Convergence | To find a limit, set u(n+1) = u(n) = L and solve — but check the sequence actually converges |
| Calculator use | Use the ANS button to iterate quickly on your calculator |
| Subscript notation | Edexcel may use u(n+1) or various subscript forms; be comfortable with all |
Edexcel 9MA0 specification, Section 4 — Sequences and series, sub-strand on recurrence covers work with sequences including those given by a formula for the nth term and those generated by a simple relation of the form un+1=f(un); understand the meaning of and work with increasing sequences, decreasing sequences and periodic sequences (refer to the official specification document for exact wording). Recurrence relations sit at the centre of A-Level pure mathematics: they are explicitly tested on Paper 1, but appear synoptically across the specification. Section 9 (Numerical methods) is the most direct synoptic neighbour — fixed-point iteration xn+1=g(xn) is the applied face of recurrence. Section 1 (Proof) uses recurrence as a primary domain for proof by induction. Section 8 (Differentiation) and Section 7 (Integration) connect through differential equations, the continuous analogue of recurrence. The Edexcel formula booklet does not list closed-form solutions for linear recurrences — these must be derived.
Question (8 marks):
The sequence un is defined by un+1=21un+3 with u1=0.
(a) Find u2, u3 and u4. (2)
(b) Show, by induction or otherwise, that un=6−6⋅(21)n−1. (4)
(c) Hence, or otherwise, find n→∞limun, justifying your answer. (2)
Solution with mark scheme:
(a) Step 1 — iterate.
u2=21(0)+3=3. u3=21(3)+3=29. u4=21(29)+3=421.
B1 — at least two correct values. B1 — all three values correct, exact form preserved.
(b) Step 1 — base case.
For n=1: u1=6−6⋅(21)0=6−6=0. This matches the given initial condition.
B1 — base case verified, with explicit substitution shown.
Step 2 — inductive step. Assume uk=6−6⋅(21)k−1 for some k≥1. Show uk+1=6−6⋅(21)k.
uk+1=21uk+3=21(6−6⋅(21)k−1)+3
M1 — applies the recurrence to the inductive hypothesis correctly.
Step 3 — simplify.
=3−3⋅(21)k−1+3=6−3⋅(21)k−1=6−6⋅(21)k
using 3⋅(21)k−1=6⋅(21)k since 21⋅6=3.
A1 — algebra correct, target form reached.
Step 4 — conclude. "Since the result holds for n=1 and the truth for n=k implies the truth for n=k+1, by mathematical induction un=6−6⋅(21)n−1 for all n≥1."
A1 — explicit induction conclusion. Skipping this sentence costs the final A1 even when the algebra is right; examiners reward the formal closure.
(c) Step 1 — take the limit. As n→∞, (21)n−1→0 since ∣21∣<1, so un→6.
M1 — recognises that ∣r∣<1 implies rn→0.
Step 2 — verify via fixed point. Setting L=21L+3 gives 21L=3, so L=6, confirming the limit independently.
A1 — limit L=6 stated, and either method (closed form or fixed-point equation) properly justified.
Total: 8 marks (B3 M2 A3, split as shown).
Question (6 marks): A sequence is defined by un+1=2un+3 with u1=1.
(a) Find u2 and u3 in exact form. (2)
(b) Given that the sequence converges to a limit L, find the exact value of L. (2)
(c) State, with reasoning, whether the sequence is increasing or decreasing. (2)
Mark scheme decomposition by AO:
(a)
(b)
(c)
Total: 6 marks split AO1 = 3, AO2 = 3. Recurrence questions on 9MA0 are AO2-rich because they reward reasoning about behaviour — convergence, monotonicity, periodicity — rather than pure procedure.
Connects to:
Section 9 — Numerical methods (fixed-point iteration): the iterative scheme xn+1=g(xn) for solving x=g(x) is literally a recurrence relation. The fixed point of the recurrence is the root of the equation. Convergence diagnostics (cobweb diagrams, the contraction condition) are inherited directly from recurrence theory.
Section 1 — Proof by induction: the natural setting for induction is "prove a property holds for every term of a recursively defined sequence." Closed-form formulae for recurrences are routinely established by induction in Paper 1 questions.
Section 4 — Arithmetic and geometric sequences: these are special cases of linear recurrences. Arithmetic: un+1=un+d (constant additive step). Geometric: un+1=run (constant multiplicative step). Both are exactly solvable in closed form, and the general linear case un+1=αun+β blends them.
Section 7/8 — Differential equations: a differential equation dxdy=f(y,x) is the continuous analogue of a recurrence un+1=f(un,n). Euler's method, the simplest numerical solver, converts a differential equation back into a recurrence yn+1=yn+h⋅f(yn,xn).
Cobweb and staircase diagrams: the geometric visualisation of recurrence behaviour. Plot y=f(x) and y=x; iterate by alternately moving vertically to the curve and horizontally to the line. Convergent sequences spiral or staircase into the fixed point; divergent sequences fly off; periodic sequences trace closed cycles.
Recurrence questions on 9MA0 split AO marks more evenly between AO1 and AO2 than most pure-mathematics topics:
| AO | Typical share | Earned by |
|---|---|---|
| AO1 (knowledge / procedure) | 40–55% | Iterating the recurrence, substituting values, computing terms in exact form |
| AO2 (reasoning / interpretation) | 35–50% | Stating the fixed point as L=f(L), identifying periodicity, justifying monotonicity, concluding induction proofs |
| AO3 (problem-solving) | 5–15% | Reverse-engineering closed forms, modelling discrete dynamics, recognising hidden recurrences |
Examiner-rewarded phrasing: "stating the fixed point as L=f(L)"; "since un→L as n→∞, both sides of the recurrence tend to the same limit"; "the sequence is periodic with period 3 because un+3=un for all n"; "by mathematical induction, the result holds for all n∈N." Phrases that lose marks: "the sequence settles down to" (vague — examiners want "converges to"); "loops back" instead of "is periodic"; ending an induction proof without the formal closing sentence; computing the fixed point but failing to check whether the sequence actually converges to it (L being a fixed point does not guarantee convergence — examiners increasingly probe this distinction at A*).
A specific Edexcel pattern to watch: questions that say "given that the sequence converges to L" grant you convergence, and only ask you to find L — a one-step L=f(L) calculation. Questions that ask "show that the sequence converges" require additional reasoning about monotonicity and boundedness. Confusing the two costs marks in both directions.
Question: A sequence is defined by un+1=5−21un with u1=2. Given that the sequence converges to a limit L, find the value of L.
Grade C response (~210 words):
If the sequence converges to L, then both un and un+1 tend to L, so substituting into the recurrence:
L=5−21L.
Add 21L to both sides: 23L=5, so L=310.
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.