How Do You Find the 100th Term?
You know the sequence starts: 3, 7, 11, 15, 19, ...
- Each term is 4 more than the previous
- To find the 100th term... do you need terms 1 through 99 first?
- Or is there a smarter way?
Think about which approach you'd actually use.
Explicit Expressions: Direct Access
An explicit expression gives
- Compute any output without knowing previous outputs
- Examples:
, , - Want the 100th term? Substitute
. Done.
Explicit = direct access to any output
Example: Plumber Charges (Linear)
Scenario: A plumber charges $75 plus $40 per hour.
- Cost for 6 hours:
- No need to compute
through first
Example: Investment Growth (Exponential)
Scenario: An investment of $1000 earns 6% per year.
- Value after 20 years:
- Direct substitution — no intermediate values needed
The power of explicit: skip straight to any value you need.
Quick Check
A gym membership costs $25 to join plus $15 per month.
Which explicit formula models total cost
- A)
- B)
- C)
Think before the next slide...
The Power of Explicit Form
With an explicit formula, you have direct access to any output:
- Find
in one step — no intermediate values - Useful when the question asks for a specific, distant term
- Works best for: linear, exponential, polynomial, and many other types
When you can find it, explicit form is the preferred representation.
From Explicit to Recursive
Some processes are naturally step-dependent:
- Bank balance depends on last month's balance plus interest
- Population depends on last year's count plus new births
- Each new value is built from the previous one
Recursive processes capture this dependence directly.
Recursive Processes: Building from Previous Values
A recursive process has two required parts:
- Initial value: $f(0) = $ some starting number
- Recursion rule: $f(n) = $ [expression involving
]
You must compute sequentially:
Both parts are required — the rule alone is incomplete.
Plumber — Recursive Form
Same scenario, different representation:
- Initial:
(base fee, zero hours) - Rule:
(each hour adds $40)
Build the sequence:
| 0 | 75 |
| 1 | 115 |
| 2 | 155 |
| 3 | 195 |
Investment — Recursive Form
Same investment, recursive representation:
- Initial:
- Rule:
Build the first few values:
| 0 | 1000.00 |
| 1 | 1060.00 |
| 2 | 1123.60 |
To find
A Naturally Recursive Scenario
Rabbit population with mortality:
"Each generation produces twice as many offspring, but 10 don't survive."
Writing an explicit formula for this is hard — the recursion captures the process directly.
Computing Recursive Terms
Practice:
| Calculation | ||
|---|---|---|
| 0 | (initial) | 50 |
| 1 | 90 | |
| 2 | 170 | |
| 3 | 330 |
Key:
Quick Check
For
| 0 | ? |
| 1 | ? |
| 2 | ? |
| 3 | ? |
| 4 | ? |
Build each term from the previous one — no skipping.
Guided Practice: Write the Recursive Form
Scenario: An account holds $500. Each year the balance is multiplied by 1.04.
Write the recursive definition:
- Initial: $V(0) = $ ___
- Rule: $V(t) = $ ___
___
What is the initial value? What operation happens each step?
The Recursive Trade-off
| Explicit | Recursive | |
|---|---|---|
| Access | Direct — any term in one step | Sequential — must build from the start |
| Best for | Finding distant terms quickly | Describing step-dependent processes |
| Required info | Formula in terms of |
Initial value + recursion rule |
| Both define | The same function — different packaging |
Neither is "better" — each has a purpose.
Practice Problems
Compute 5 terms and write both forms for each:
- "A tree is 4 feet tall and grows 2.5 feet per year."
- "A bank account starts at $800 and earns 3% interest annually."
- Given:
, — write the explicit form.
Work through each, then advance for answers.
Answers
1. Tree:
2. Bank:
3.
Both forms define the same function — just different packaging.
Key Takeaways
✓ Explicit expressions give direct access — compute any output in one step
✓ Recursive processes build step by step — initial value AND rule required
✓ Both forms define the same function — explicit for distant terms, recursive for step-dependent processes
Watch out: To find
Watch out: The rule alone is incomplete —
Watch out:
What's Next
Lesson 2 of 2: Procedural Descriptions and Translation Between Forms
- Procedures: when neither formula nor simple recursion fits
- Translation: convert explicit
recursive for linear and exponential
- Verification: prove both forms give the same values
- Choosing: which form is best for which question?
Continue to Lesson 2 when ready.