Student[ODEs]
ChangeVariables
transform an ODE using a change of variables
Calling Sequence
Parameters
Description
Examples
Compatibility
ChangeVariables(tr, ODE)
ChangeVariables(tr, ODE, y(x))
ChangeVariables(tr, ODE, y(x), u(t))
ODE
-
an ordinary differential equation
tr
a set or list of two transformation equations
y
name; the existing dependent variable
x
name; the existing independent variable
u
name; the new dependent variable
t
name; the new independent variable
ChangeVariables(tr, ODE, y(x), u(t)) applies the change of variables tr to the given ODE.
The second and third arguments, y(x) and u(t), representing the existing and new dependent variables, are optional; however they must be given if the existing and dependent variables cannot be determined from the form of the transformation.
There must be two transformation equations, each of which specifies the new form of one of the following three entities:
x,y⁡x,ⅆⅆxy⁡x
If the left-hand sides of the transformation equations are x and diff(y(x),x), then the ODE should not contain y(x) (independently of diff(y(x),x)). If the left-hand sides of the transformation equations are y(x) and diff(y(x),x), then the ODE should not contain x (independently of y(x) and diff(y(x),x)).
with⁡StudentODEs:
ode1≔x2⁢y⁡x+1y⁡x+x−1⁢diff⁡y⁡x,x=x2⁢y⁡x+1y⁡x
ode1≔x2⁢y⁡x+1y⁡x+x−1⁢ⅆⅆxy⁡x=x2⁢y⁡x+1y⁡x
ChangeVariables⁡x=u⁡t,y⁡x=t,ode1
u⁡t2⁢t+1t+u⁡t−1ⅆⅆtu⁡t=u⁡t2⁢t+1t
ode2≔diff⁡y⁡x,x,x=x2x−1⁢diff⁡y⁡x,x−x2x−1
ode2≔ⅆ2ⅆx2y⁡x=x2⁢ⅆⅆxy⁡xx−1−x2x−1
ChangeVariables⁡x=t,diff⁡y⁡x,x=u⁡t,ode2
ⅆⅆtu⁡t=t2⁢u⁡tt−1−t2t−1
The Student[ODEs][ChangeVariables] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
eval
PDEtools[dchange]
Student
subs
Download Help Document