PDEtools
difforder
evaluate the differential order of an algebraic expression
Calling Sequence
Parameters
Description
Examples
difforder(a, x)
a
-
algebraic expression, equation, inequation, set, or list
x
(optional) variable with respect to which the differential order must be evaluated
The difforder command returns the general or particular differential order of a partial derivative or of an algebraic expression (or equation, inequation, set, or list). When called with only one argument, it returns the general differential order. When the first argument is an algebraic expression, then the order is given by the maximum order occurring inside it. If difforder is called with two arguments, it returns the differentiation order with respect to the indicated variable. difforder also works with anticommutative variables set using the Physics package.
In the case of a DESol structure, that is, an object that represents an ODE solution (no derivatives) but is written in terms of the differential equation (with derivatives), the difforder command returns the differential order of the highest derivative in the DESol structure. Derivatives of a DESol structure representing the solution of a linear ODE are of the same differential order as the DESol structure, because, given the solution of a linear ODE written in terms of the differential equation (that is a DESol structure), the derivative of this solution satisfies a linear ODE of the same order (see convert,DESol).
This function is part of the PDEtools package, and so it can be used in the form difforder(..) only after executing the command with(PDEtools). However, it can always be accessed through the long form of the command by using PDEtools[difforder](..).
with⁡PDEtools:
eq1≔diff⁡f⁡u,v,`$`⁡u,2,`$`⁡v,3
eq1≔∂5∂u2∂v3f⁡u,v
difforder⁡eq1,difforder⁡eq1,u,difforder⁡eq1,v
5,2,3
eq2≔D1,2,2,3,3,3⁡f⁡x,y,z
difforder⁡eq2,difforder⁡eq2,x,difforder⁡eq2,y,difforder⁡eq2,z
6,1,2,3
difforder⁡g⁡x
0
eq3≔h⁡t⁢diff⁡f⁡x,y,z,`$`⁡x,2,`$`⁡z,3+h⁡x,y,z⁢Diff⁡D2,2,2,2⁡j⁡x,y,z,x
eq3≔h⁡t⁢∂5∂x2∂z3f⁡x,y,z+h⁡x,y,z⁢ⅆⅆxD2,2,2,2⁡j⁡x,y,z
difforder⁡eq3,x,difforder⁡eq3,y,difforder⁡eq3,z,difforder⁡eq3,t
2,4,3,0
The following example uses difforder with an equation as the first argument.
eq4≔diff⁡f⁡x,y,z,`$`⁡x,2,`$`⁡z,3=diff⁡j⁡x,y,z,`$`⁡y,5,x
eq4≔∂5∂x2∂z3f⁡x,y,z=∂6∂x∂y5j⁡x,y,z
difforder⁡eq4
6
difforder⁡eq4,x
2
An example with an inequation as the first argument:
eq5≔diff⁡f⁡x,y,z,`$`⁡x,2,`$`⁡z,3≠diff⁡j⁡x,y,z,`$`⁡y,5,x
eq5≔∂5∂x2∂z3f⁡x,y,z≠∂6∂x∂y5j⁡x,y,z
difforder⁡eq5
An example with DESol. The differential order is, by convention, that of the highest derivative.
DESol⁡f⁡x⁢_Y⁡x+diff⁡_Y⁡x,`$`⁡x,2,_Y⁡x
DESol⁡f⁡x⁢_Y⁡x+ⅆ2ⅆx2_Y⁡x,_Y⁡x
difforder⁡
The derivative of a DESol structure has, by convention, the same differential order.
diff⁡,x
ⅆⅆxDESol⁡f⁡x⁢_Y⁡x+ⅆ2ⅆx2_Y⁡x,_Y⁡x
See Also
DEtools
Physics
Setup
Download Help Document