Skip to main content
SingaporeMathsSyllabus dot point

How do recurrence relations define a sequence, and how do we find or verify a closed form?

Use recurrence relations to generate sequences, find and verify a conjectured formula for the nth term, and analyse long-term behaviour

A focused answer to the H2 Mathematics outcome on recurrence relations. Generating terms from a recurrence, conjecturing and verifying a closed form, finding a limiting value, and recognising arithmetic and geometric recurrences.

Generated by Claude Opus 4.89 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this dot point is asking
  2. The answer
  3. Examples in context
  4. Try this

What this dot point is asking

SEAB wants you to use a recurrence relation (a rule giving each term from previous ones) to generate a sequence, conjecture and verify a closed-form expression for the nnth term, find a limiting value where one exists, and recognise when a recurrence produces an arithmetic or geometric progression.

The answer

What a recurrence relation is

A recurrence relation defines a sequence by giving one or more starting terms and a rule for the next term in terms of earlier ones, for example un+1=f(un)u_{n+1} = \mathrm{f}(u_n) with u1u_1 specified. Generating terms is just repeated substitution (iteration).

Recognising standard types

  • If un+1=un+du_{n+1} = u_n + d, the sequence is arithmetic with common difference dd.
  • If un+1=runu_{n+1} = r u_n, it is geometric with common ratio rr.

Mixed linear recurrences un+1=aun+bu_{n+1} = au_n + b (aβ‰ 1a \neq 1) combine a geometric part with a constant and tend to a limit when ∣a∣<1|a| < 1.

Finding a limiting value

If the sequence converges to a limit LL, then both unu_n and un+1u_{n+1} approach LL. Substitute LL for both in the recurrence and solve the resulting equation. For un+1=aun+bu_{n+1} = au_n + b this gives L=b1βˆ’aL = \dfrac{b}{1 - a}, valid when ∣a∣<1|a| < 1 so the sequence actually converges.

Verifying a conjectured formula

To confirm a proposed unu_n:

  1. Check it gives the correct first term(s).
  2. Substitute it into the recurrence and show it reproduces un+1u_{n+1}.

A full proof for all nn uses mathematical induction, but verification of the initial condition plus the recurrence step is the routine algebra checked here.

Examples in context

Example 1. A discrete population model. A fish stock with un+1=1.1unβˆ’200u_{n+1} = 1.1 u_n - 200 (10% growth minus a fixed catch) has limiting level L=βˆ’2001βˆ’1.1=2000L = \dfrac{-200}{1 - 1.1} = 2000 only if ∣a∣<1|a| < 1; here a=1.1>1a = 1.1 > 1, so it diverges, warning that the catch is unsustainable below 20002000.

Example 2. Iterating toward a root. The recurrence xn+1=12(xn+2xn)x_{n+1} = \dfrac{1}{2}\left(x_n + \dfrac{2}{x_n}\right) converges to 2\sqrt{2}: setting xn+1=xn=Lx_{n+1} = x_n = L gives L=12(L+2L)L = \dfrac{1}{2}(L + \frac{2}{L}), so L2=2L^2 = 2. This is the classic square-root iteration.

Try this

Q1. Generate the first four terms of u1=5u_1 = 5, un+1=2unβˆ’3u_{n+1} = 2u_n - 3. [2 marks]

  • Cue. 5,7,11,195, 7, 11, 19.

Q2. A sequence has un+1=0.4un+6u_{n+1} = 0.4u_n + 6. Find its limit. [3 marks]

  • Cue. L=0.4L+6L = 0.4L + 6, so 0.6L=60.6L = 6, L=10L = 10.

Q3. State whether un+1=un+7u_{n+1} = u_n + 7 defines an arithmetic or geometric progression, and give the relevant parameter. [1 mark]

  • Cue. Arithmetic, common difference 77.

Exam-style practice questions

Practice questions written in the style of SEAB exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.

Original5 marksA sequence is defined by u1=2u_1 = 2 and un+1=12un+3u_{n+1} = \dfrac{1}{2}u_n + 3. Find the first four terms and the limit of the sequence as nβ†’βˆžn \to \infty.
Show worked answer β†’

u1=2u_1 = 2. u2=12(2)+3=4u_2 = \tfrac{1}{2}(2) + 3 = 4. u3=12(4)+3=5u_3 = \tfrac{1}{2}(4) + 3 = 5. u4=12(5)+3=5.5u_4 = \tfrac{1}{2}(5) + 3 = 5.5.

The terms increase toward a limit. If un→Lu_n \to L, then un+1→Lu_{n+1} \to L too, so L=12L+3L = \tfrac{1}{2}L + 3, giving 12L=3\tfrac{1}{2}L = 3, so L=6L = 6.

Markers reward correctly iterating the first four terms, setting un+1=un=Lu_{n+1} = u_n = L in the limit, and solving for L=6L = 6.

Original4 marksA sequence satisfies un+1=3unβˆ’4u_{n+1} = 3u_n - 4 with u1=3u_1 = 3. Show that un=2+3nβˆ’1u_n = 2 + 3^{n-1} satisfies both the initial condition and the recurrence.
Show worked answer β†’

Initial condition: u1=2+30=2+1=3u_1 = 2 + 3^0 = 2 + 1 = 3. Correct.

Recurrence check: with un=2+3nβˆ’1u_n = 2 + 3^{n-1},
3unβˆ’4=3(2+3nβˆ’1)βˆ’4=6+3nβˆ’4=2+3n=2+3(n+1)βˆ’1=un+13u_n - 4 = 3(2 + 3^{n-1}) - 4 = 6 + 3^n - 4 = 2 + 3^n = 2 + 3^{(n+1)-1} = u_{n+1}.

Both conditions hold, so the proposed formula is correct.

Markers reward verifying the initial term and substituting the formula into the recurrence to recover un+1u_{n+1}.

Related dot points