Overview - Maple Help

Online Help

All Products    Maple    MapleSim


Overview of the Student[ODEs][Solve] Command and Subpackage

 

Calling Sequence

Parameters

Description

Computation

Getting Help with a Command in the Package

Examples

Compatibility

Calling Sequence

Student[ODEs][Solve][command](arguments)

command(arguments)

Solve(ODE, y(x))

Parameters

ODE

-

an ordinary differential equation

y

-

name; the dependent variable

x

-

name; the independent variable

Description

• 

The Solve(ODE, y(x)) command finds the solution of an ordinary differential equation.

• 

Student[ODEs][Solve] is also a subpackage containing a number of commands for solving ordinary differential equations and systems of ODEs.

• 

Each command in the Student[ODEs][Solve] subpackage can be accessed by using either the long form or the short form of the command name in the command calling sequence.

  

The long form, Student[ODEs][Solve]:-command or Student:-ODEs:-Solve:-command, is always available. The short form can be used after loading the package.

• 

The Maple Command Completion facility is helpful for entering the names of Student package commands.

Computation

  

The subpackage Student[ODEs][Solve] consists of commands for solving ODEs and systems according to various methods:

Bessel

CauchyEuler

Chebyshev

Exact

FirstOrder

FirstOrderLinear

HighOrder

ByLaplaceTransform

ByPerturbation

SecondOrder

LinearConstantCoefficients

Separable

BySeries

System

ByUndeterminedCoefficients

 

Getting Help with a Command in the Package

  

To display the help page for a particular Student[ODEs][Solve] command, see Getting Help with a Command in a Package.

Examples

withStudentODEs:

ode1t2zt+1+zt2t1diffzt,t=0

ode1t2zt+1+zt2t1ⅆⅆtzt=0

(1)

Solveode1,zt

zt22zt+lnzt+1=t22tlnt1+_C1

(2)

ode2diffyx,x,xdiffyx,xxexpx=0

ode2ⅆ2ⅆx2yxⅆⅆxyxxⅇx=0

(3)

Solveode2,yx

yx=_C1+_C2ⅇx+ⅇxx22x+22

(4)

ode3diffyx,x,x+5diffyx,x2yx=0

ode3ⅆ2ⅆx2yx+5ⅆⅆxyx2yx=0

(5)

Solveode3,yx

yx=6ⅇ_C1x+6_C216,yx=6ⅇ_C1x+6_C216

(6)

ode4x3diffyx,x,x,x+3x2diffyx,x,x6xdiffyx,x6yx=0

ode4x3ⅆ3ⅆx3yx+3x2ⅆ2ⅆx2yx6xⅆⅆxyx6yx=0

(7)

Solveode4,yx

yx=3_C2x3_C3x2_C1x2

(8)

Compatibility

• 

The Student[ODEs][Solve] package was introduced in Maple 2021.

• 

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

See Also

Command Completion

dsolve

Student

Student, ODEs