← Growth and Decay in Sequences › Recurrence Relations
Recurrence Relations
Key Terms
- A recurrence relation defines each term using the previous term(s)
- Arithmetic: tn+1 = tn + d (add a constant)
- Geometric: tn+1 = r × tn (multiply by a constant)
- Combined: tn+1 = r × tn + b (geometric + constant, e.g. loan repayments)
- The initial value t1 (or t0) must be given to use the relation
- Iterate by substituting previous values one step at a time
Arithmetic recurrence: tn+1 = tn + d, t1 = a
Geometric recurrence: tn+1 = r × tn, t1 = a
Combined (loan model):
tn+1 = r × tn − P
(r = interest factor, P = regular payment)
Geometric recurrence: tn+1 = r × tn, t1 = a
Combined (loan model):
tn+1 = r × tn − P
(r = interest factor, P = regular payment)
Worked Example: The recurrence relation tn+1 = 1.05tn − 2000, t1 = 30 000 models a loan. Find t2, t3, and t4.
t2 = 1.05 × 30 000 − 2000 = 31 500 − 2000 = 29 500
t3 = 1.05 × 29 500 − 2000 = 30 975 − 2000 = 28 975
t4 = 1.05 × 28 975 − 2000 = 30 423.75 − 2000 = 28 423.75
t2 = 1.05 × 30 000 − 2000 = 31 500 − 2000 = 29 500
t3 = 1.05 × 29 500 − 2000 = 30 975 − 2000 = 28 975
t4 = 1.05 × 28 975 − 2000 = 30 423.75 − 2000 = 28 423.75
Hot Tip: Recurrence relations are perfect for spreadsheet calculations — set up one formula and fill down. For an exam, iterate step by step, showing each calculation clearly.
What is a Recurrence Relation?
A recurrence relation (or difference equation) defines a sequence by specifying how each term is calculated from one or more previous terms, along with an initial value.
The simplest forms in this course are first-order — each term depends only on the immediately preceding term.
Types
- Arithmetic: tn+1 = tn + d (produces an arithmetic sequence)
- Geometric: tn+1 = r × tn (produces a geometric sequence)
- Combined linear: tn+1 = r × tn + b (models loans, repeated processes)
Financial Applications
Loan and annuity problems use the combined form:
- tn+1 = r × tn − P models a reducing-balance loan (borrow tn, apply interest rate r, subtract payment P)
- tn+1 = r × tn + D models an investment with regular deposits D
Strategy: For multi-step iteration, build a table with columns for n, tn, and intermediate calculations. This reduces errors and is easy for examiners to follow.
Mastery Practice
- Fluency Write out the first 5 terms of the sequence defined by tn+1 = tn + 6, t1 = 3.
- Fluency Write out the first 5 terms of the sequence defined by tn+1 = 2tn, t1 = 5.
- Fluency The recurrence relation tn+1 = 1.1tn, t1 = 1000 models a savings account growing at 10% per period. Find t4.
- Fluency Identify whether each relation produces an arithmetic or geometric sequence: (a) tn+1 = tn − 5, t1 = 50 (b) tn+1 = 0.5tn, t1 = 80
- Understanding A recurrence relation is tn+1 = 1.04tn − 500, t1 = 10 000. This models a loan with monthly interest and payments. Calculate t2, t3, t4, and t5.
- Understanding Write the recurrence relation for a savings account that starts with $2 000, earns 3% interest per year, and has $300 deposited at the end of each year.
- Understanding The relation tn+1 = 0.8tn + 40, t1 = 200 models the amount of a drug in a patient’s bloodstream after each dose. Find t2, t3, t4, and t5. What value does the drug level appear to approach?
- Understanding A sequence is defined by tn+1 = 3tn − 2, t1 = 1. Find the first 4 terms. Does this sequence grow, decay, or remain constant?
- Problem Solving A person borrows $20 000 at 6% annual interest (applied each year). They repay $2 500 at the end of each year. Set up the recurrence relation and find the balance at the end of each of the first 4 years. Will the loan ever be paid off at this rate?
- Problem Solving A sequence has recurrence relation tn+1 = rtn + b, t1 = 100. After many terms, the sequence appears to approach a constant value (a fixed point).
- (a) If the fixed point is L, explain why L = rL + b.
- (b) Solve for L when r = 0.6 and b = 80.
- (c) Verify using the recurrence relation that starting near L keeps you near L.