Suppose that the functions u and w are defined as follows.
u(x) =
=-x-1
w(x) = 2x² +1
Find the following.

Step-by-step explanation:
(a○b)(x) is the same as a(b(x)).
it is really that simple.
first you calculate the result of the inner function, and then that result is the input for the outer function.
that's it.
so,
(w○u)(2) = w(u(2))
u(2) = -2 -1 = -3
w(-3) = 2×(-3)² + 1 = 2×9 + 1 = 19
so, 19 is the first answer.
(u○w)(2) = u(w(2))
w(2) = 2×2² + 1 = 2×4 + 1 = 9
u(9) = -9 - 1 = -10
so, -10 is the second answer.