Introduction0%
Recurrence Relations · Topic 1 of 5
Introduction
Video lesson
Theory
A recurrence relation is a type of recursive sequence which relies on knowing the previous term in order to obtain the next consecutive term.
i.e. if we wanted to know the term in a sequence, we would need to know the first 99 terms.
e.g. For the sequence 1, 5, 9, 13, ...
where is the initial term in the sequence.
Rule: add 4 to previous term
i.e.
An example of a recurrence relation is gaining compound interest on money in a bank account.
You invest £100 in a bank account with an interest rate of 2%.
i.e. where is the amount in the bank account after years.
⚠️ Common Examiner Traps
- or ? read which term the sequence starts from. Being one term out runs through the entire rest of the question.
- Each term depends on the one before: you cannot jump to the tenth term without generating the ones in between, unless a formula is given.
- Keep full accuracy: rounding each term compounds the error quickly. Carry the decimals through.
- Read the context carefully: "10% is removed" means multiplying by 0.9, not subtracting 10.