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.
with⁡StudentODEs:
ode1≔diff⁡y⁡t,t,t+z⁡t+1+z⁡t2⁢t−1⁢diff⁡z⁡t,t=diff⁡f⁡x,x,x,x
ode1≔ⅆ2ⅆt2y⁡t+z⁡t+1+z⁡t2⁢t−1⁢ⅆⅆtz⁡t=ⅆ3ⅆx3f⁡x
DifferentialOrder⁡ode1
3
DifferentialOrder⁡ode1,t
2
DifferentialOrder⁡ode1,z⁡t
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