FunctionAdvisor/differentiation_rule
return the differentiation rule of a given mathematical function
Calling Sequence
Parameters
Description
Examples
Compatibility
FunctionAdvisor(differentiation_rule, math_function)
differentiation_rule
-
literal name; 'differentiation_rule'
math_function
Maple name of mathematical function
The FunctionAdvisor(differentiation_rule, math_function) command returns both the differentiation rule (first derivative) and the symbolic differentiation rule (nth derivative) for the function. The result thus consists of a sequence of two equations, with inert derivatives on the left-hand sides (represented using Diff) and the corresponding values of these derivatives on the right-hand sides.
FunctionAdvisor( differentiation_rule, arcsin );
FunctionAdvisor( differentiation_rule, dilog );
ⅆⅆzdilog⁡z=ln⁡z1−z,ⅆnⅆzndilog⁡z=dilog⁡zn=0−1n⁢MeijerG⁡1−n,1−n,,0,−n,z−1otherwise
The variables used by the FunctionAdvisor command to create the calling sequence are local variables. To make the FunctionAdvisor command return results using global variables, pass the actual function call instead of the function name. Compare the following two input and output groups.
eq1 := FunctionAdvisor(diff, Zeta);
* Partial match of "diff" against topic "differentiation_rule".
eq1≔ⅆⅆsζn⁡s,a=ζn+1⁡s,a,ⅆⅆaζn⁡s,a=−s⁢ζn⁡s+1,a−0n=0n⁢ζn−1⁡s+1,aotherwise
has([eq1],a), has([eq1],b), has([eq1],z);
false,false,false
eq2 := FunctionAdvisor( diff, Zeta(a,b,z) );
eq2≔ⅆⅆbζa⁡b,z=ζa+1⁡b,z,ⅆⅆzζa⁡b,z=−b⁢ζa⁡b+1,z−0a=0a⁢ζa−1⁡b+1,zotherwise
has([eq2], a), has([eq2], b), has([eq2], z);
true,true,true
For functions which accept different numbers of parameters, you can specify for which function call you want the differentiation rule by specifying the function with the appropriate number of arguments. For example, for Zeta, if given with only one argument specified, it represents the Hurwitz Zeta function and its differentiation rule is the following.
FunctionAdvisor( diff, Zeta(z) );
ⅆⅆzζ⁡z=ζ1⁡z,ⅆnⅆznζ⁡z=ζn⁡z
As another example, consider the exponential integral Ei.
FunctionAdvisor( differentiation_rule, Ei(z) );
ⅆⅆzEi⁡z=ⅇzz,ⅆnⅆznEi⁡z=Ei⁡zn=0−ⅇz⁢∑_k1=0n−1⁡n−1!⁢−1n−_k1⁢z_k1−n_k1!otherwise
FunctionAdvisor( differentiation_rule, Ei(a,z) );
ⅆⅆaEia⁡z=−za⁢MeijerG⁡,0,0,−1,−1,−a,,z,ⅆⅆzEia⁡z=−Eia−1⁡z,ⅆnⅆznEia⁡z=−−1n⁢MeijerG⁡0,a,,0,a−1,n,z−zn+π⁢za−1−nΓ⁡a−n⁢sin⁡π⁢a
The FunctionAdvisor/differentiation_rule command was updated in Maple 2016.
See Also
diff
Ei
FunctionAdvisor
FunctionAdvisor/DE
FunctionAdvisor/topics
symbolic differentiation
Zeta
Download Help Document