LinearConstantCoefficients - 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 : Computation : Solve : LinearConstantCoefficients

Student[ODEs][Solve]

  

LinearConstantCoefficients

  

Solve a linear ODE with constant coefficients

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

LinearConstantCoefficients(ODE, y(x))

Parameters

ODE

-

a linear ordinary differential equation with constant coefficients

y

-

name; the dependent variable

x

-

name; the independent variable

Description

• 

The LinearConstantCoefficients(ODE, y(x)) command finds the solution of a linear ODE with constant coefficients.

• 

Use the option output=steps to make this command return an annotated step-by-step solution.  Further control over the format and display of the step-by-step solution is available using the options described in Student:-Basics:-OutputStepsRecord.  The options supported by that command can be passed to this one.

Examples

withStudentODEsSolve:

ode1diffyx,x6yx=0

ode1ⅆⅆxyx6yx=0

(1)

LinearConstantCoefficientsode1,yx

yx=_C1ⅇ6x

(2)

ode2diffyx,x,xdiffyx,x6yx=0

ode2ⅆ2ⅆx2yxⅆⅆxyx6yx=0

(3)

LinearConstantCoefficientsode2,yx

yx=_C1ⅇ3x+_C2ⅇ2x

(4)

ode3diffyx,x,xdiffyx,x6yx=x2

ode3ⅆ2ⅆx2yxⅆⅆxyx6yx=x2

(5)

LinearConstantCoefficientsode3,yx

yx=_C1ⅇ3x+_C2ⅇ2xx26+x187108

(6)

ode4diffyx,x,x+4yx+4diffyx,x=0

ode4ⅆ2ⅆx2yx+4yx+4ⅆⅆxyx=0

(7)

LinearConstantCoefficientsode4,yx

yx=_C1ⅇ2x+_C2xⅇ2x

(8)

ode5diffyx,x,x+4yx+4diffyx,x=3sinx

ode5ⅆ2ⅆx2yx+4yx+4ⅆⅆxyx=3sinx

(9)

LinearConstantCoefficientsode5,yx

yx=_C1ⅇ2x+_C2xⅇ2x+12cosx259sinx25

(10)

ode6diffyx,x,x+2yx+2diffyx,x=0

ode6ⅆ2ⅆx2yx+2yx+2ⅆⅆxyx=0

(11)

LinearConstantCoefficientsode6,yx

yx=_C1ⅇxsinx+_C2ⅇxcosx

(12)

ode7diffyx,x,x+2yx2diffyx,x=expx

ode7ⅆ2ⅆx2yx+2yx2ⅆⅆxyx=ⅇx

(13)

LinearConstantCoefficientsode7,yx

yx=_C1ⅇxsinx+_C2ⅇxcosx+ⅇx

(14)

ode7diffyx,x,x,x+diffyx,x,xyx+diffyx,x=expx

ode7ⅆ3ⅆx3yx+ⅆ2ⅆx2yxyx+ⅆⅆxyx=ⅇx

(15)

LinearConstantCoefficientsode7,yx

yx=_C1ⅇx+_C2ⅇx+_C3xⅇx+ⅇx2x22x+18

(16)

Compatibility

• 

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

• 

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

• 

The Student[ODEs][Solve][LinearConstantCoefficients] command was updated in Maple 2022.

• 

The output option was introduced in Maple 2022.

• 

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

See Also

dsolve

Student

Student[ODEs]

Student[ODEs][Solve]

Student[ODEs][Solve][FirstOrderLinear]

Student[ODEs][Solve][SecondOrderLinear]