It's not just a case of what you have on the right, it's also a case of what you have on the left. On the right you need the function(s), with arguments. On the left you need to include the arguments to the functions on the right but not, usually, the function name. For example
f(x):sin(x)
g(x):cos(x)
F(a,b,c):f(a)+g(b)+c+5
Note that the arguments on the left and right in a function definition only have any meaning within that definition. So the x in f(x) and the x in g(x) are not the same x, and have no relationship to any variable in the worksheet that might be called x. If you have a variable name on the right that's not in the argument list it assumes it's a predefined variable.
It is possible to pass the function name as an argument, but you would only do that if you wished to change the actual function, rather than just the arguments to the function. For example,
f(x):if(x>0,sin,cos)
returns a function, not a value. If x is greater than 0 the function is sin, if it's less than or equal to zero it's cos.
Richard