A recursive formula defines a term using one or more preceding terms. It needs both a starting point and a rule for moving forward. The essential habit is to use the value just calculated, not the original value, at each new step.
Learning objectives
- Identify the initial condition and recurrence equation.
- Respect whether indexing begins at \(a_0\), \(a_1\), or another stated term.
- Calculate every intermediate term in order.
- Translate repeated percent change plus a fixed addition into a recurrence.
The two required parts
Initial condition versus recurrence rule
Initial condition
States where the sequence starts, such as \(a_0=6\) or \(a_1=6\).
Recurrence equation
Explains how to obtain a new term from a preceding term, such as \(a_n=2a_{n-1}+n\).
- \(a_0\)
The stated starting condition.
- \(a_1\)
Apply the rule to the initial value.
- \(a_2\)
Apply the rule to the previous result.
- \(a_3\)
Apply the rule again without restarting.
Calculate one term at a time
The rule depends on both the previous term and the current index \(n\).
| Index | Previous term | Rule applied | New term |
|---|---|---|---|
| \(1\) | \(a_0=3\) | \(2(3)+1\) | \(a_1=7\) |
| \(2\) | \(a_1=7\) | \(2(7)+2\) | \(a_2=16\) |
| \(3\) | \(a_2=16\) | \(2(16)+3\) | \(a_3=35\) |
Repeated function composition
Apply one function repeatedly
Let \(f(x)=2x-1\). Find \(f(f(f(3)))\).
- First application
\(f(3)=2(3)-1=5\).
- Second application
\(f(5)=2(5)-1=9\).
- Third application
\(f(9)=2(9)-1=17\).
Recursive real-world models
Follow the formula's operation order exactly for each period.
A savings recurrence
An account begins with \(A_0=1200\). Each month it earns \(1\%\), then receives \(75\): \(A_n=1.01A_{n-1}+75\). Find \(A_2\).
- Month one
\(A_1=1.01(1200)+75=1287\).
- Month two
\(A_2=1.01(1287)+75=1374.87\).
- Order
The previous balance is multiplied first; the contribution is added afterward.
Common mistakes and traps
- Using \(a_0\) at every step instead of the newly calculated term.
- Treating a sequence beginning at \(a_0\) as though it begins at \(a_1\).
- Jumping to a later term while skipping required intermediate values.
- Ignoring the \(n\)-dependent part of the rule.
- Adding a fixed contribution before multiplication when the recurrence specifies the reverse.
- Rounding a decimal recurrence too early.
- Confusing a recursive rule with an explicit formula that computes a term directly.
Use the correct previous term
If \(b_1=4\) and \(b_n=3b_{n-1}-2\), what is \(b_3\)?
- \(10\)
- \(16\)
- \(28\)
- \(34\)
Show answer and explanation
Answer: \(28\)
\(b_2=3(4)-2=10\), then \(b_3=3(10)-2=28\).
Key takeaways
What to remember
- A recursive definition needs an initial condition and a recurrence rule.
- The stated index determines which term comes next.
- Each calculated term becomes the input for the following step.
- In a mixed recurrence, preserve multiplication/addition order and delay rounding.
Put these notes into practice
Apply the ideas with SAT-style questions, then reinforce key details with flashcards.