how can we take the derivative of something then use it in an expression like
g := t->diff(f(t),t);
this fails because maple does not first take the derivative then apply t, but applies the value of t then tries to differentiate with respect to that value symbolically.
To solve this I usually have to precompute the differential, then copy and paste it. The problem with this method is that any time the original function changes, everything needs to be redone, which can be time consuming.
Is there a better way?
Using the
D
operator you can assign the "derivative" of the operatorf
tog
, without having first assigned anything tof
.You can subsequently assign and reassign different operators to
f
, after whichg
can be called. Callingg
in the example below will not causef
to be called with any symbolic argument.Another way to do it is as follows. Note that with this methodology every call to
g
will cause Maple to calldiff
on the symbolic localT
. If -- after assigning tof
-- you callg
many times then that will be more expensive (even if just for the overhead of checking a memoized result and making the extra function call todiff
). Also, yourf
may be something which is not even set up to return appropriately for a non-numeric argument, so the call tof(T)
might be problematic.The
D
operator is pretty useful. You could check out its help page.