Adding Another Function
Composite functions can be evaluated with any combination of functions. Let's add a third function, h(x) = 2x to f(x) = 3x+1 and g(x) = 5x2 and calculate some composites.
1. The composite function f(h(x)) would be:
f(h(x)) = 3•(g(x)) + 1
= 3•(2x) +1
= 6x + 1
2. The composite function g(h(x)) would be:
g(h(x)) = 5•(h(x))2
= 5•(2x)2
= 5•4x2
= 20x2
3. The composite function h(f(x)) would be:
h(f(x)) = 2•(f(x))
= 2•(3x+1)
= 6x + 2

