Answer:
163
Explanation:
"(f o f)(-2)" is a command asking you to use function f (evaluated at x= -2) as the input to another case of function f. Here are some examples:
f(x) = 2x^2 + 1.
We can evaluate this for several different inputs as examples of evaluating a function:
f(0) = 2(0)^2 + 1 = 1
f(-5) = 2(-5)^2 + 1 = 50+1
f(g) = 2(g)^2 + 1 = 2g + 1
f(f) = 2(f)^2 + 1 = 2f^2 + 1 Note: this is called a "composite function."
This leads up to the problem we're working on: Evaluate f(f(x)) for x = -2:
f(-2) = 2(-2)^2 + 1 = 8 + 1 = 9
Now use this result, 9, as the input to f(x): f( f(-2) ) = f( 9 ) = 2(9)^2 + 1 = 162 + 1 = 163.