Hey,
Say I have a function f[a,b,c] which depends on another function g[b,c] such that:
f[a,b,c] = a*g[b,c]
If I input, f[a,1,2], mathematica spits out a*g[1,2] rather then actually evaluating what g[1,2] is. Is there a way I can force mathematica to evaluate g[1,2] so instead, e/g if g...