Respuesta :

A compound function is when the output of one function is used as the input of another function. If we have a function ff and another function gg, the function fg(x)fg(x) is called "ff of gg of xx" or "fgfg of xx" and is a composition of the two functions.

The order in which functions are applied is important. Find the function of the

function. If you have two or more functions, there can be many different permutations of those functions, giving you many different composite functions.

fg(x)fg (x) can be written f[g(x)]f[g(x)] to indicate that the inner function should be applied before the outer function.

Solution:

Your problem → f(x)=3x, g(x)=((3x)/4)-2, Find f(g(x))

f(x)=3x, g(x)=3x4-2, fog(x)=?

g(x)=3x4-2, f(x)=3x

fog(x)=f(g(x))

=f((3x)/4-2)

=3(3x4-2)

=9x4-6

fog(x)=9x4-6

More problems related to the transformation of the functions are in the link below.

https://brainly.com/question/13810353?referrer=searchResults

#SPJ4