Question 1141914
<br>
The given function performs 4 operations on the input value:
(1) square it;
(2) subtract 1;
(3) take the square root; and
(4) add 2<br>
So you could write the function as the composition of 4 functions:
p(x) = x^2
q(x) = x-1
r(x) = sqrt(x)
s(x) = x+2<br>
s(r(q(p(x)))) = s(r(q(x^2))) = s(r(x^2-1)) = s(sqrt(x^2-1)) = sqrt(x^2-1)+2<br>
If you need to write the function as the composition of 3 functions, none of which is the identity, simply combine two of the four operations into one.  So one possible answer is
h(x) = x^2
g(x) = sqrt(x-1)
f(x) = x+2<br>
Then<br>
f(g(h(x))) = f(g(x^2)) = f(sqrt(x^2-1) = sqrt(x^2-1)+2<br>
There are of course other possible answers....