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

Online Help

All Products    Maple    MapleSim


PDEtools

  

D_Dx

  

differentiate expressions in function or jet notation, with respect to independent or dependent (function) variables of the jet space.

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

D_Dx(expression, x, ... , DepVars, 'options'='value')

Parameters

expression

-

any algebraic expression or algebraic equation

x, ...

-

differentiation variables, can include functions of the jet spece (dependent variables) or their derivatives

DepVars

-

a function or a list of them indicating the dependent variables of the problem

jetnotation = ...

-

(optional) can be true (default, the notation found in expression), false (function notation), jetvariables, jetvariableswithbrackets, jetnumbers or jetODE; to respectively return or not using the different jet notations available

Description

• 

The D_Dx command computes total derivatives, as diff does, but for D_Dx the input and/or the output can be in jet notation. Also, D_Dx can compute partial derivatives with respect to dependent variables of the jet space (functions in DepVars) or their derivatives. D_Dx also works with anticommutative variables set using the Physics package.

• 

The first argument, expression, is the object being differentiated, followed by the differentiation variables, and then the last argument, DepVars, is always an indication of the dependent variables of the problem, either as a function (could be that way when there is only one) or as a list of them.

• 

The differentiation variables can include any name but also functions of the jet space, that is, functions in DepVars or their partial derivatives. When the differentiation variable is a name the total derivative is computed, so for instance x, fx and f'x are all considered functions of x. When the differentiation variable is a function, however, a partial derivative is computed in that, for instance, fx and f'x are considered independent objects. This permits computing in a natural way objects like

ⅆⅆtx.Lxt,x.t=D_DxLxt,x.t,x.t,t,xt

  

where the right-hand-side is entered as D_Dx(L(x(t), diff(x(t), t)), diff(x(t), t), t, [x(t)]) and means to differentiate Lxt,x.t with respect to x.t followed by taking the total derivative with respect to t, taking xt as the dependent variable defining the jet space.

• 

The output is by default expressed in the jetnotation found in the input expression, whenever expression is written using jetnotation, or otherwise it is expressed in jetvariables notation when expression is passed in standard function notation. This default can be changed by passing the optional argument jetnotation = ..., where the right hand side can be false (to return in function notation), jetnumbers, jetvariables, jetvariableswithbrackets or jetODE; see the jet notations available.

Examples

Consider a PDE problem with three dependent variables

withPDEtools,D_Dx,ToJet,FromJet

D_Dx,ToJet,FromJet

(1)

DepVarsux,t,vt,wy

DepVarsux,t,vt,wy

(2)

PDEdiffux,tvtwy,x+diffux,tvtwy,t,y

PDExux,tvtwy+tux,tvtⅆⅆywy+ux,tⅆⅆtvtⅆⅆywy

(3)

Using the standard diff command you can compute the total derivative of this expression with respect to x,t or y. It is not possible, however, to differentiate PDE with respect to any of the functions in DepVars or its partial derivatives. For that purpose you can use D_Dx

D_DxPDE,wy,DepVars

vux

(4)

Note that the result is presented in jetvariables jet notation, a compact mathematical notation understood by all the symmetry commands of PDEtools. To have this result expressed in function notation use FromJet or directly call D_Dx with the option jetnotation = false

FromJet,DepVars

vtxux,t

(5)

D_DxPDE,wy,DepVars,jetnotation=false

vtxux,t

(6)

In this other example it is computed the partial derivative with respect to xux,t followed by the total derivative with respect to t

D_DxPDE,ux,t,DepVars

vtw

(7)

In the input above, instead of u[x] you can write diff(u(x,t), x) (function notation) or u[1] (this is the jetnumbers jetnotation), all of them representing the same mathematical object.

You can also work with PDE directly in more compact jetnotation; compare with (4.3)

JPDEToJetPDE,DepVars

JPDEuvtwy+vwux+vutwy

(8)

Compute now the total derivative with respect to t comparing the results of differentiating PDE and its jet version JPDE

D_DxPDE,t,DepVars

uvt,twy+vwux,t+vut,twy+wuxvt+2utvtwy

(9)

D_DxJPDE,t,DepVars

uvt,twy+vwux,t+vut,twy+wuxvt+2utvtwy

(10)

0

(11)

See Also

FromJet

PDEtools

Physics

Setup

ToJet