P1 — Which Correctly Represents f(x+h)? (5 Variants)
The correct answer for each variant and explanation of common errors:
Variant 0 — f(x) = 5x − 2
Correct answer: \( 5x + 5h - 2 \)
Substitute (x+h) for every x: \( f(x+h) = 5(x+h) - 2 = 5x + 5h - 2 \)
Variant 1 — f(x) = −3x + 7
Correct answer: \( -3x - 3h + 7 \)
\( f(x+h) = -3(x+h) + 7 = -3x - 3h + 7 \)
Variant 2 — f(x) = x² + 6
Correct answer: \( x^2 + 2xh + h^2 + 6 \)
\( f(x+h) = (x+h)^2 + 6 = x^2 + 2xh + h^2 + 6 \)
Common error: \( x^2 + h^2 + 6 \) — Freshman's Dream, missing the \( 2xh \) cross term.
Variant 3 — f(x) = 3x² − 2x
Correct answer: \( 3x^2 + 6xh + 3h^2 - 2x - 2h \)
\[ f(x+h) = 3(x+h)^2 - 2(x+h) = 3(x^2+2xh+h^2) - 2x - 2h = 3x^2+6xh+3h^2-2x-2h \]
Variant 4 — f(x) = 4 − 2x²
Correct answer: \( 4 - 2x^2 - 4xh - 2h^2 \)
\[ f(x+h) = 4 - 2(x+h)^2 = 4 - 2(x^2+2xh+h^2) = 4 - 2x^2 - 4xh - 2h^2 \]
P2 — Computing (f∘g)(x) Step by Step
\( f(x) = x^2 - 5 \), \( g(x) = 3x + 1 \)
Step 1 — Inner function: g(x) = 3x + 1 (g runs first in f∘g)
Step 2 — Substitution: Replace x in f with (3x + 1)
Step 3 — Unsimplified form: \( f(3x+1) = (3x+1)^2 - 5 \)
Step 4 — Simplified form:
\[ (3x+1)^2 - 5 = 9x^2 + 6x + 1 - 5 = 9x^2 + 6x - 4 \]
P3 — Decomposition (5 Variants)
Variant 0 — h(x) = (x² + 3)⁵
Inner: \( g(x) = x^2 + 3 \) | Outer: \( f(u) = u^5 \)
Variant 1 — h(x) = √(x − 4)
Inner: \( g(x) = x - 4 \) | Outer: \( f(u) = \sqrt{u} \)
Variant 2 — h(x) = (5x + 2)³
Inner: \( g(x) = 5x + 2 \) | Outer: \( f(u) = u^3 \)
Variant 3 — h(x) = (x² − 1)⁴
Inner: \( g(x) = x^2 - 1 \) | Outer: \( f(u) = u^4 \)
Variant 4 — h(x) = √(2x² + 7)
Inner: \( g(x) = 2x^2 + 7 \) | Outer: \( f(u) = \sqrt{u} \)