Lets say I have a function defined by f(Asin(x)). I want to differentiate this function in Maple. That is ∂f(Asin(x))/∂x = A*cos(x)*f’(A*sin(x)). However, Maple requires me to specify the function using the command f := a -> y for example. So I wish to know if it is possible to differentiate unspecified functions in Maple and if possible how.
Differentiation of unspecified functions in Maple
33 Views Asked by itc At
1
Contrary to what you've claimed, Maple does not require you to specify
f(as an operator, say).Below,
fis just some unassigned name. And you can calldiffon an expression involving function calls tof.That result happens to be in
Dform, which is a convenient way to express the derivative offevaluated at a point/value.That result can also be represented in
diffform (orDiff, its inert alternative). In this form we get a result involving adiffcall. But that needs a variable of differentiation, and here that has to be some "dummy" name.If you
converttodiffform then any substitution forfby some concrete operator -- followed by evaluation -- would result in actual differentiation. But if you were toconvertto inertDiffform then later substitution forfwould not result in actual differentitation (unless, say, you utilized thevaluecommand on that result).