Question: If I try like this F := sin(x); G := cos(x

This question is related to the Question Compose two functions and plot

If I try like this

F := sin(x);

G := cos(x);

f := proc (x) options operator, arrow; F end proc;

g := proc (x) options operator, arrow; G end proc;

h := proc (x) options operator, arrow; f(g(x)) end proc;

h(x)

but it doesn't work.

 

PS: I want to make my own function Compostiton(F,G)

Please Wait...