Recall: Function Notation, Forms, and Evaluation
- Notation:
, , — substitute the input to get the output - Linear:
— e.g., , so - Exponential:
— e.g., , so
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 Give Direct Output 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
Plumber Charges as a Linear Explicit Formula
Scenario: A plumber charges $75 plus $40 per hour.
- Cost for 6 hours:
- No need to compute
through first
Investment Growth as an Exponential Explicit Formula
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: Identify the Explicit Formula
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 Each Value Depends on the Previous
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 Cost in Recursive Form
- Initial:
(base fee, zero hours) - Rule:
(each hour adds $40)
| 0 | 75 |
| 1 | 115 |
| 2 | 155 |
| 3 | 195 |
Investment Growth in Recursive Form
- Initial:
- Rule:
| 0 | 1000.00 |
| 1 | 1060.00 |
| 2 | 1123.60 |
To find
Some Contexts Are Naturally Recursive by Design
"Each generation produces twice as many offspring, but 10 don't survive."
Means the Previous Output, Not Input
| Calculation | ||
|---|---|---|
| 0 | (initial) | 50 |
| 1 | 90 | |
| 2 | 170 | |
| 3 | 330 |
Quick Check: Build the Recursive Sequence
For
| 0 | ? |
| 1 | ? |
| 2 | ? |
| 3 | ? |
| 4 | ? |
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?
Comparing Explicit and Recursive: When to Use Each
| 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 |
Practice: Write Both Forms from Context
- "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.
Practice Answers: Both Explicit and Recursive Forms
1. Tree:
2. Bank:
3.
Lesson 1 Key Takeaways and Watch-Outs
✓ 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:
Coming Up: Procedures, Choices, and Translation
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
- Choosing: which form is best for which question?
Click to begin the narrated lesson
Determine explicit or recursive expressions