Extract complete argument and function name(s) from the Expression, (standard mathematical functions only) MAPLE
问题 For expressions like a1 := sin(1+a/b); a2 := log(1+ a*b); a3 := abs(a^2+b); how can I get expressions of respective functions. For example someCommand(a1) # should get an output 1+a/b someCommand(a2) # should get an output 1+a*b someCommand(a3) # should get an output a^2+b I have tried to get related topics from maple documentation but unfortunately am not able to get exactly. edited: Also how is it possible to get list (in sequence)of functions used let a :=sin(log(abs(a+b)));# functions can