1 / 21
Explicit and Recursive Expressions | Lesson 1 of 2

Explicit and Recursive Function Forms

Lesson 1 of 2: Direct Formulas and Step-by-Step Builds

In this lesson:

  • Write explicit formulas — compute any output directly
  • Write recursive definitions — build from the previous value
  • Verify both forms generate the same sequence
Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Learning Objectives

By the end of this lesson, you will be able to:

  1. Write an explicit expression giving directly in terms of
  2. Write a recursive process defining in terms of
  3. Translate between explicit and recursive forms for linear and exponential functions
  4. Verify that both representations generate the same sequence of values
  5. Explain the trade-off: explicit gives direct access; recursive builds step by step
  6. Choose the appropriate form based on the question being asked
Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Explicit Expressions: Direct Access

An explicit expression gives directly in terms of .

  • Compute any output without knowing previous outputs
  • Examples: , ,
  • Want the 100th term? Substitute . Done.

Explicit = direct access to any output

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Example: Plumber Charges (Linear)

Scenario: A plumber charges $75 plus $40 per hour.

  • Cost for 6 hours:
  • No need to compute through first

Linear explicit function table showing C(h) for h = 0 through 5

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Quick Check

A gym membership costs $25 to join plus $15 per month.

Which explicit formula models total cost after months?

  • A)
  • B)
  • C)

Think before the next slide...

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Recursive Processes: Building from Previous Values

A recursive process has two required parts:

  1. Initial value: $f(0) = $ some starting number
  2. Recursion rule: $f(n) = $ [expression involving ]

You must compute sequentially:

Both parts are required — the rule alone is incomplete.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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
Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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 : must compute through first.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

A Naturally Recursive Scenario

Rabbit population with mortality:

"Each generation produces twice as many offspring, but 10 don't survive."

Rabbit population growth showing recursive build P(0) through P(3)

Writing an explicit formula for this is hard — the recursion captures the process directly.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Computing Recursive Terms

Practice: ,

Calculation
0 (initial) 50
1 90
2 170
3 330

Key: means the previous OUTPUT — not .

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Quick Check

For , , compute through .

0 ?
1 ?
2 ?
3 ?
4 ?

Build each term from the previous one — no skipping.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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?

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Practice Problems

Compute 5 terms and write both forms for each:

  1. "A tree is 4 feet tall and grows 2.5 feet per year."
  2. "A bank account starts at $800 and earns 3% interest annually."
  3. Given: , — write the explicit form.

Work through each, then advance for answers.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

Answers

1. Tree: ; Recursive: ,

2. Bank: ; Recursive: ,

3. ✓ — verify: ✓,

Both forms define the same function — just different packaging.

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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 recursively, you must compute through — no shortcut

⚠️ Watch out: The rule alone is incomplete — generates infinitely many sequences without a starting value

⚠️ Watch out: means the previous OUTPUT, not

Grade 9 Functions | HSF.BF.A.1.a
Explicit and Recursive Expressions | Lesson 1 of 2

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.

Grade 9 Functions | HSF.BF.A.1.a