Respuesta :

Function Composition is applying one function to the results of another.

(g º f)(x) = g(f(x)),
first apply f(), then apply g()

You must also respect the domain of the first function.