Chebyshev - 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]

  

Chebyshev

  

Solve Chebyshev's Equation

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Chebyshev(ODE, y(x))

Parameters

ODE

-

a Chebyshev equation

y

-

name; the dependent variable

x

-

name; the independent variable

Description

• 

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

ODE≔−x2+1⁢y''−x⁢y'+p2⁢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≔−x2+1⁢diff⁡y⁡x,x,x−x⁢diff⁡y⁡x,x+y⁡x=0

ode1≔−x2+1⁢ⅆ2ⅆx2y⁡x−x⁢ⅆⅆxy⁡x+y⁡x=0

(1)
> 

Chebyshev⁡ode1,y⁡x

y⁡x=c__1⁢−x2+1+c__2⁢x

(2)
> 

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

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

(3)
> 

Chebyshev⁡ode2,y⁡x

y⁡x=c__1⁢x⁢−x2+1+c__2⁢2⁢x2−1

(4)
> 

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

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

(5)
> 

Chebyshev⁡ode3,y⁡x

y⁡x=c__1⁢sin⁡3⁢arccos⁡x+c__2⁢cos⁡3⁢arccos⁡x

(6)
> 

ode4≔−x2+1⁢diff⁡y⁡x,x,x−x⁢diff⁡y⁡x,x−25⁢y⁡x=0

ode4≔−x2+1⁢ⅆ2ⅆx2y⁡x−x⁢ⅆⅆxy⁡x−25⁢y⁡x=0

(7)
> 

Chebyshev⁡ode4,y⁡x

y⁡x=c__1⁢ⅇ5⁢arccos⁡x+c__2⁢ⅇ−5⁢arccos⁡x

(8)

Compatibility

• 

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

• 

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

• 

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

ChebyshevT

ChebyshevU

dsolve

Student

Student[ODEs]

Student[ODEs][Solve]