
Jonathan F. answered 11/24/15
Tutor
4.9
(400)
Passionate About Algebra
Composing functions g and f, read it as g(f(a)), or "g of f of a". See the parentheses? You do this from the inside out.
The parameter of f(x) [the inner function] is "x". You are "passing" an "a" to function f, so for every "x" in f's definition, substitute "a":
f(x) = x2 + 2x - 3 TO
f(a) = a2 + 2a - 3
Now, here is the tricky part: you are passing that "a2 + 2a - 3" to function g. The parameter of g(x) is "x", so for every "x" in g's definition, substitute "a2 + 2a - 3":
g(x) = 2x - 1 TO
g(a2 + 2a - 3) = 2(a2 + 2a - 3) - 1 = 2a2 + 4a - 6 - 1 = 2a2 + 4a - 7
Therefore, g(f(a)), or (g o f)(a) = 2a2 + 4a - 7.