A composite function is formed when the output of one function is used as the input of another. We evaluate the inner function first, then plug that result into the outer function.
(f β g)(x) = f(g(x))
Both notations mean the same thing: evaluate g first, then plug into f.
Read aloud: βf of g of xβ
Key Rule: When evaluating f(g(x)), always work inside-out (right to left). Evaluate g(x) first, then use that answer as the input for f.
βοΈ Warm-Up β Substituting Expressions
f(x) = 2x β 3
f(5)
= 2(5) β 3 = 7
f(a)
= 2a β 3
f(4t)
= 2(4t) β 3 = 8t β 3
f(5x β 1)
= 2(5x β 1) β 3 = 10x β 2 β 3 = 10x β 5
βοΈ Example 1 β Numeric Composition
f(x) = 3x + 1. Let f(2) = b. Find f(b).
1
Find b: f(2) = 3(2) + 1 = 7 β b = 7
2
Find f(b): f(7) = 3(7) + 1 = 22
βοΈ Example 2 β Evaluating Composites at a Number
f(x) = 3x β 5 Β· g(x) = 2x + 1
f(g(3))
1
g(3) = 2(3)+1 = 7
2
f(7) = 3(7)β5 = 16
g(f(3))
1
f(3) = 3(3)β5 = 4
2
g(4) = 2(4)+1 = 9
f(f(4))
1
f(4) = 3(4)β5 = 7
2
f(7) = 3(7)β5 = 16
Notice: f(g(3)) β g(f(3)). Composition is generally NOT commutative β order matters!