differentiation_rule - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


FunctionAdvisor/differentiation_rule

return the differentiation rule of a given mathematical function

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

FunctionAdvisor(differentiation_rule, math_function)

Parameters

differentiation_rule

-

literal name; 'differentiation_rule'

math_function

-

Maple name of mathematical function

Description

• 

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.

Examples

FunctionAdvisor( differentiation_rule, arcsin );

(1)

FunctionAdvisor( differentiation_rule, dilog );

ⅆⅆzdilogz=lnz1z,ⅆnⅆzndilogz=dilogzn=0−1nMeijerG1n,1n,,0,n,z1otherwise

(2)

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ζns,a=ζn+1s,a,ⅆⅆaζns,a=sζns+1,a0n=0nζn1s+1,aotherwise

(3)

has([eq1],a), has([eq1],b), has([eq1],z);

false,false,false

(4)

eq2 := FunctionAdvisor( diff, Zeta(a,b,z) );

* Partial match of "diff" against topic "differentiation_rule".

eq2ⅆⅆbζab,z=ζa+1b,z,ⅆⅆzζab,z=bζab+1,z0a=0aζa1b+1,zotherwise

(5)

has([eq2], a), has([eq2], b), has([eq2], z);

true,true,true

(6)

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) );

* Partial match of "diff" against topic "differentiation_rule".

ⅆⅆzζz=ζ1z,ⅆnⅆznζz=ζnz

(7)

As another example, consider the exponential integral Ei.

FunctionAdvisor( differentiation_rule, Ei(z) );

ⅆⅆzEiz=ⅇzz,ⅆnⅆznEiz=Eizn=0ⅇz_k1=0n1n1!−1n_k1z_k1n_k1!otherwise

(8)

FunctionAdvisor( differentiation_rule, Ei(a,z) );

ⅆⅆaEiaz=zaMeijerG,0,0,−1,−1,a,,z,ⅆⅆzEiaz=Eia1z,ⅆnⅆznEiaz=−1nMeijerG0,a,,0,a1,n,zzn+πza1nΓansinπa

(9)

Compatibility

• 

The FunctionAdvisor/differentiation_rule command was updated in Maple 2016.

See Also

diff

Ei

FunctionAdvisor

FunctionAdvisor/DE

FunctionAdvisor/topics

symbolic differentiation

Zeta