Student[ODEs][Solve]
FirstOrderLinear
Solve a first order linear ODE
Calling Sequence
Parameters
Description
Examples
Compatibility
FirstOrderLinear(ODE, y(x))
ODE
-
a first order linear ordinary differential equation
y
name; the dependent variable
x
name; the independent variable
The FirstOrderLinear(ODE, y(x)) command finds the solution of a first order linear ODE.
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≔diffxt,t+costxt=1
ode1≔ⅆⅆtxt+costxt=1
FirstOrderLinearode1,xt
xt=ⅇ−sint∫ⅇsintⅆt+_C1
ode2≔diffxt,t−exptxt=cost
ode2≔ⅆⅆtxt−ⅇtxt=cost
FirstOrderLinearode2,xt
xt=ⅇⅇt∫ⅇ−ⅇtcostⅆt+_C1
ode3≔diffxt,t+xt−t2=0
ode3≔ⅆⅆtxt+xt−t2=0
FirstOrderLinearode3,xt
xt=t2−2t+2+_C1ⅇ−t
ode4≔diffxt,t+exptxt−t2=0
ode4≔ⅆⅆtxt+ⅇtxt−t2=0
FirstOrderLinearode4,xt
xt=ⅇ−ⅇt∫ⅇⅇtt2ⅆt+_C1
ode5≔diffxt,t+txt−sint=0
ode5≔ⅆⅆtxt+txt−sint=0
FirstOrderLinearode5,xt
xt=−πⅇ122erf2−1+It2−πⅇ122erf21+It2−4_C1ⅇ−t224
The Student[ODEs][Solve][FirstOrderLinear] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
The Student[ODEs][Solve][FirstOrderLinear] 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]
Download Help Document