Student[ODEs][Solve]
Chebyshev
Solve Chebyshev's Equation
Calling Sequence
Parameters
Description
Examples
Compatibility
Chebyshev(ODE, y(x))
ODE
-
a Chebyshev equation
y
name; the dependent variable
x
name; the independent variable
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+1y''−xy'+p2y=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.
withStudentODEsSolve:
ode1≔−x2+1diffyx,x,x−xdiffyx,x+yx=0
ode1≔−x2+1ⅆ2ⅆx2yx−xⅆⅆxyx+yx=0
Chebyshevode1,yx
yx=_C1−x2+1+_C2x
ode2≔−x2+1diffyx,x,x−xdiffyx,x+4yx=0
ode2≔−x2+1ⅆ2ⅆx2yx−xⅆⅆxyx+4yx=0
Chebyshevode2,yx
yx=_C1x−x2+1+_C22x2−1
ode3≔−x2+1diffyx,x,x−xdiffyx,x+9yx=0
ode3≔−x2+1ⅆ2ⅆx2yx−xⅆⅆxyx+9yx=0
Chebyshevode3,yx
yx=_C1sin3arccosx+_C2cos3arccosx
ode4≔−x2+1diffyx,x,x−xdiffyx,x−25yx=0
ode4≔−x2+1ⅆ2ⅆx2yx−xⅆⅆxyx−25yx=0
Chebyshevode4,yx
yx=_C1ⅇ5arccosx+_C2ⅇ−5arccosx
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]
Download Help Document