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

Online Help

All Products    Maple    MapleSim


Student[ODEs]

  

Type

  

classify the solvability type of a first order ODE, if possible

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Type(ODE, y(x))

Type(ODE, class, y(x))

Parameters

ODE

-

a first order ordinary differential equation

y

-

name; the dependent variable

x

-

name; the independent variable

class

-

name; a solvability type

Description

• 

The Type(ODE, y(x)) returns a sequence of matching solvability types of ODE if any are found. Currently the only solvability types considered are: separable, linear, and exact.

• 

The Type(ODE, class, y(x)) returns true or false indicating whether the ODE is of the given solvability type class.

• 

The extra argument y(x) indicating the solving variable is optional in general, but it must be given when the solving variable cannot be determined unambiguously from the ODE.

Examples

withStudentODEs:

typesseparable,linear,exact:

ode1x2yx+1+yx2x1diffyx,x=0

ode1x2yx+1+yx2x1ⅆⅆxyx=0

(1)

Typeode1,yx

separable

(2)

map2Type,ode1,types,yx

true,false,false

(3)

ode2x2yx+1+x1+diffyx,x=0

ode2x2yx+1+x1+ⅆⅆxyx=0

(4)

Typeode2

linear

(5)

map2Type,ode2,types

false,true,false

(6)

ode3diffxyx2+1+x2,x=0

ode3yx2+1+2xyxⅆⅆxyx+2x=0

(7)

Typeode3

exact

(8)

map2Type,ode3,types

false,false,true

(9)

ode4diffxyx+1,x=0

ode4yx+1+xⅆⅆxyx=0

(10)

Typeode4

exact,linear,separable

(11)

map2Type,ode4,types

true,true,true

(12)

Compatibility

• 

The Student[ODEs][Type] command was introduced in Maple 2021.

• 

For more information on Maple 2021 changes, see Updates in Maple 2021.

See Also

DEtools[odeadvisor]

map2

Student

Student[ODEs]