Practice Maths

← Growth and Decay in SequencesRecurrence Relations › Solutions

Solutions — Recurrence Relations

  1. Fluency First 5 terms: tn+1 = tn + 6, t1 = 3.
    t1 = 3
    t2 = 3 + 6 = 9
    t3 = 9 + 6 = 15
    t4 = 15 + 6 = 21
    t5 = 21 + 6 = 27
    Sequence: 3, 9, 15, 21, 27 (arithmetic, d = 6)
  2. Fluency First 5 terms: tn+1 = 2tn, t1 = 5.
    t1 = 5
    t2 = 2 × 5 = 10
    t3 = 2 × 10 = 20
    t4 = 2 × 20 = 40
    t5 = 2 × 40 = 80
    Sequence: 5, 10, 20, 40, 80 (geometric, r = 2)
  3. Fluency tn+1 = 1.1tn, t1 = 1000. Find t4.
    t2 = 1.1 × 1000 = 1100
    t3 = 1.1 × 1100 = 1210
    t4 = 1.1 × 1210 = 1331
  4. Fluency Identify arithmetic or geometric.
    (a) tn+1 = tn − 5: adds a constant → Arithmetic, d = −5
    (b) tn+1 = 0.5tn: multiplies by a constant → Geometric, r = 0.5
  5. Understanding tn+1 = 1.04tn − 500, t1 = 10 000. Calculate t2 through t5.
    t2 = 1.04 × 10 000 − 500 = 10 400 − 500 = 9 900
    t3 = 1.04 × 9 900 − 500 = 10 296 − 500 = 9 796
    t4 = 1.04 × 9 796 − 500 = 10 187.84 − 500 = 9 687.84
    t5 = 1.04 × 9 687.84 − 500 = 10 075.35 − 500 = 9 575.35

    The loan balance is decreasing each period, meaning the payments are reducing the principal.
  6. Understanding Write the recurrence relation for a savings account: starts $2 000, earns 3% interest, $300 deposited each year.
    Interest factor: r = 1.03
    Annual deposit: b = 300
    tn+1 = 1.03 × tn + 300,   t1 = 2000

    (Interpretation: at the end of each year, apply 3% interest to current balance, then add the $300 deposit.)
  7. Understanding tn+1 = 0.8tn + 40, t1 = 200. Find t2–t5 and the long-term value.
    t2 = 0.8(200) + 40 = 160 + 40 = 200
    Wait — t2 = t1 = 200! Let’s check:
    L = 0.8L + 40 → 0.2L = 40 → L = 200

    The sequence is already at the fixed point! Every term equals 200.

    Interpretation: each dose adds 40 mg, but 20% of the remaining drug is eliminated. The level stabilises at 200 mg because the input and elimination balance out.
  8. Understanding tn+1 = 3tn − 2, t1 = 1. Find first 4 terms.
    t1 = 1
    t2 = 3(1) − 2 = 1
    t3 = 3(1) − 2 = 1
    t4 = 1
    Sequence: 1, 1, 1, 1 — constant!

    t1 = 1 happens to be the fixed point: L = 3L − 2 → −2L = −2 → L = 1. If t1 ≠ 1, the sequence would grow (since r = 3 > 1).
  9. Problem Solving $20 000 loan at 6% annual interest, $2 500 repaid each year.
    Recurrence relation: tn+1 = 1.06 × tn − 2500, t1 = 20 000

    t2 = 1.06 × 20 000 − 2500 = 21 200 − 2500 = $18 700
    t3 = 1.06 × 18 700 − 2500 = 19 822 − 2500 = $17 322
    t4 = 1.06 × 17 322 − 2500 = 18 361.32 − 2500 = $15 861
    t5 = 1.06 × 15 861 − 2500 = 16 812.66 − 2500 = $14 313

    Fixed point: L = 1.06L − 2500 → −0.06L = −2500 → L = $41 667
    Since t1 = $20 000 < L, the balance is decreasing → the loan will eventually be paid off. (It will take approximately 14 years.)
  10. Problem Solving tn+1 = rtn + b, r = 0.6, b = 80, t1 = 100.
    (a) If the sequence approaches a fixed value L, then eventually tn+1 ≈ tn ≈ L. Substituting: L = rL + b. This is the equation the fixed point must satisfy.

    (b) L = 0.6L + 80 → 0.4L = 80 → L = 200

    (c) Start near L, say t1 = 200:
    t2 = 0.6(200) + 80 = 120 + 80 = 200 ✓ (stays at 200)

    Starting at t1 = 100:
    t2 = 0.6(100) + 80 = 140
    t3 = 0.6(140) + 80 = 164
    t4 = 0.6(164) + 80 = 178.4
    t5 = 0.6(178.4) + 80 = 187.04
    The sequence is converging toward L = 200, confirming the fixed point.

← Back to Questions