Question: How do I Combine functions in Maple Flow

How do I combine a number of functions into a composite one?

For example
x := T -> (A - 1/T)/C;

y := x -> sqrt(1/27*B^3/C^3 + 1/4*x^2);

Combined into a final composite function
R := T -> exp((y - 1/2*x)^(1/3) - (y + 1/2*x)^(1/3)); such that the function R evaluates x and y as functions themselves.

Many times this sort of function definition makes it easier for the human.

Please Wait...