CauchyEuler - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Student[ODEs][Solve]

  

CauchyEuler

  

Solve a Cauchy-Euler equation

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

CauchyEuler(ODE, y(x))

Parameters

ODE

-

a Cauchy-Euler equation

y

-

name; the dependent variable

x

-

name; the independent variable

Description

• 

The CauchyEuler(ODE, y(x)) command finds the solution of a Cauchy-Euler equation, which is a linear homogeneous ordinary differential equation of the form:

ODE≔an⁢xn⁢yn+an−1⁢xn−1⁢yn−1+...+a0⁢y=0

• 

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

> 

with⁡StudentODEsSolve:

> 

ode1≔x3⁢diff⁡y⁡x,x,x,x+3⁢x2⁢diff⁡y⁡x,x,x−6⁢x⁢diff⁡y⁡x,x−6⁢y⁡x=0

ode1≔x3⁢ⅆ3ⅆx3y⁡x+3⁢x2⁢ⅆ2ⅆx2y⁡x−6⁢x⁢ⅆⅆxy⁡x−6⁢y⁡x=0

(1)
> 

CauchyEuler⁡ode1,y⁡x

y⁡x=c__1⁢x5+c__3⁢x+c__2x2

(2)
> 

ode2≔x2⁢diff⁡y⁡x,x,x−4⁢x⁢diff⁡y⁡x,x+2⁢y⁡x=0

ode2≔x2⁢ⅆ2ⅆx2y⁡x−4⁢x⁢ⅆⅆxy⁡x+2⁢y⁡x=0

(3)
> 

CauchyEuler⁡ode2,y⁡x

y⁡x=x52−172⁢x17⁢c__2+c__1

(4)
> 

ode3≔−x2⁢diff⁡y⁡x,x,x−x⁢diff⁡y⁡x,x+9⁢y⁡x=0

ode3≔−x2⁢ⅆ2ⅆx2y⁡x−x⁢ⅆⅆxy⁡x+9⁢y⁡x=0

(5)
> 

CauchyEuler⁡ode3,y⁡x

y⁡x=c__1x3+c__2⁢x3

(6)

Compatibility

• 

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

• 

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

• 

The Student[ODEs][Solve][CauchyEuler] 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]