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

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Education : Student Packages : ODEs : DifferentialOrder

Student[ODEs]

  

DifferentialOrder

  

find the differential order of an ODE

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

DifferentialOrder(expr)

DifferentialOrder(expr, x)

DifferentialOrder(expr, y(x))

Parameters

expr

-

an expression

x

-

name; the independent variable

y

-

name; the dependent variable

Description

• 

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.

Examples

withStudentODEs:

ode1diffyt,t,t+zt+1+zt2t1diffzt,t=difffx,x,x,x

ode1ⅆ2ⅆt2yt+zt+1+zt2t1ⅆⅆtzt=ⅆ3ⅆx3fx

(1)

DifferentialOrderode1

3

(2)

DifferentialOrderode1,t

2

(3)

DifferentialOrderode1,zt

1

(4)

Compatibility

• 

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

Student[ODEs]