Composition of Functions Part 3
Whew! That got a little confusing. Let's back up for a second and just talk about functions, and ignore Geogebra for a moment.
Let's write out in plain English what each our our functions from the previous activity actually do:
f
-- multiplies its input by 2g
--adds 2 to its input
- We could run
f
first and then we could run g on the outputs off
, or - We could run
g
first and then we could run f on the outputs ofg
f
first, theng
: 1 times 2 is 2; 2 plus 2 is 4g
first, thenf
: 1 plus 2 is 3; 3 times 2 is 6
f
first, theng
:g(f(x))
g
first, thenf
:f(g(x))