Solving Recurrence Relations0%

Recurrence Relations · Topic 3 of 5

Solving Recurrence Relations

Video lesson · from 7:461 worked example

One lesson video covers all of Recurrence Relations, so it opens at 7:46 for this topic — not from the beginning.

Theory

If a sequence is defined by a linear recurrence relation Un+1=aUn+bU_{n+1} = aU_n + b with unknowns aa and bb, but we know several terms of the sequence, then we can find the values of aa and bb.

We can then solve for aa and bb using simultaneous equations.

⚠️ Common Examiner Traps

  • Two unknowns need two equations: use two consecutive pairs of terms to form simultaneous equations in aa and bb.
  • Subtract to eliminate bb: since bb appears with the same coefficient in both, subtracting one equation from the other leaves aa alone.
  • Substitute back for bb: and check both original equations, which catches arithmetic errors immediately.
  • Keep lines consistent: write each equation out in full rather than scoring terms out, so every line follows from the one above.

Worked examples

Example 1

A sequence is defined by Un+1=aUn+bU_{n+1} = aU_n + b with

U1=4, U2=3.6 and U3=2.04U_1 = 4,\ U_2 = 3.6 \text{ and } U_3 = 2.04.

Find the values of aa and bb.

Set up two equations using the known terms:

(1)3.6=4a+b\text{(1)}\quad 3.6 = 4a + b
(2)2.04=3.6a+b\text{(2)}\quad 2.04 = 3.6a + b

Subtract (2) from (1):

1.56=0.4a    a=3.91.56 = 0.4a \implies a = 3.9

Substitute a=3.9a=3.9 into (1):

3.6=4(3.9)+b3.6 = 4(3.9) + b
3.6=15.6+b    b=123.6 = 15.6 + b \implies b = -12

So a=3.9a = 3.9 and b=12b = -12.