Student[ODEs]
DifferentialOrder
find the differential order of an ODE
Calling Sequence
Parameters
Description
Examples
Compatibility
DifferentialOrder(expr)
DifferentialOrder(expr, x)
DifferentialOrder(expr, y(x))
expr
-
an expression
x
name; the independent variable
y
name; the dependent variable
When called with the single argument expr, DifferentialOrder(expr) returns the differential order of the highest derivative found in expr.
When called with a second argument x which is a name, DifferentialOrder(expr, x) returns the differential order of the highest derivative of a function with respect to the variable x that is found in expr.
Finally, when called with a second argument y(x) which is a function of a single argument, DifferentialOrder(expr, y(x)) returns the differential order of the highest derivative of y(x) with respect to x that is found in expr.
withStudentODEs:
ode1≔diffyt,t,t+zt+1+zt2t−1diffzt,t=difffx,x,x,x
ode1≔ⅆ2ⅆt2yt+zt+1+zt2t−1ⅆⅆtzt=ⅆ3ⅆx3fx
DifferentialOrderode1
3
DifferentialOrderode1,t
2
DifferentialOrderode1,zt
1
The Student[ODEs][DifferentialOrder] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
PDEtools[difforder]
Student
Download Help Document