Student[ODEs]
LinearForm
convert a first order ODE into linear form, if possible
Calling Sequence
Parameters
Description
Examples
Compatibility
LinearForm(ODE, y(x))
ODE
-
an ordinary differential equation
y
name; the dependent variable
x
name; the independent variable
LinearForm(ODE, y(x)) outputs an equivalent linear ODE, if that is possible. If not, an error is produced.
with⁡StudentODEs:
ode1≔t2⁢z⁡t+1z⁡t+t−1⁢diff⁡z⁡t,t=t2⁢z⁡t+1z⁡t
ode1≔t2⁢z⁡t+1z⁡t+t−1⁢ⅆⅆtz⁡t=t2⁢z⁡t+1z⁡t
LinearForm⁡ode1,z⁡t
ⅆⅆtz⁡t=t2⁢z⁡tt−1−t2t−1
ode2≔t2⁢z⁡t+1+z⁡t2⁢t−1⁢diff⁡z⁡t,t=0
ode2≔t2⁢z⁡t+1+z⁡t2⁢t−1⁢ⅆⅆtz⁡t=0
LinearForm⁡ode2,z⁡t
Error, (in Student:-ODEs:-LinearForm) the ODE, t^2*(z(t)+1)+z(t)^2*(t-1)*diff(z(t),t) = 0, does not appear to be linearizable, at least without further simplification.
The Student[ODEs][LinearForm] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
dsolve
Student
Download Help Document