5.1 problem 1

5.1.1 Solving as quadrature ode
5.1.2 Maple step by step solution

Internal problem ID [14229]
Internal file name [OUTPUT/13910_Saturday_March_09_2024_03_57_54_PM_9125930/index.tex]

Book: INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section: Chapter 2. First Order Equations. Exercises 2.3, page 49
Problem number: 1.
ODE order: 1.
ODE degree: 1.

The type(s) of ODE detected by this program : "quadrature"

Maple gives the following as the ode type

[_quadrature]

\[ \boxed {y^{\prime }-y=10} \]

5.1.1 Solving as quadrature ode

Integrating both sides gives \begin {align*} \int \frac {1}{y +10}d y &= t +c_{1}\\ \ln \left (y +10\right )&=t +c_{1} \end {align*}

Solving for \(y\) gives these solutions \begin {align*} y_1&={\mathrm e}^{t +c_{1}}-10\\ &=c_{1} {\mathrm e}^{t}-10 \end {align*}

Summary

The solution(s) found are the following \begin{align*} \tag{1} y &= c_{1} {\mathrm e}^{t}-10 \\ \end{align*}

Figure 243: Slope field plot

Verification of solutions

\[ y = c_{1} {\mathrm e}^{t}-10 \] Verified OK.

5.1.2 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & y^{\prime }-y=10 \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 1 \\ {} & {} & y^{\prime } \\ \bullet & {} & \textrm {Solve for the highest derivative}\hspace {3pt} \\ {} & {} & y^{\prime }=y+10 \\ \bullet & {} & \textrm {Separate variables}\hspace {3pt} \\ {} & {} & \frac {y^{\prime }}{y+10}=1 \\ \bullet & {} & \textrm {Integrate both sides with respect to}\hspace {3pt} t \\ {} & {} & \int \frac {y^{\prime }}{y+10}d t =\int 1d t +c_{1} \\ \bullet & {} & \textrm {Evaluate integral}\hspace {3pt} \\ {} & {} & \ln \left (y+10\right )=t +c_{1} \\ \bullet & {} & \textrm {Solve for}\hspace {3pt} y \\ {} & {} & y={\mathrm e}^{t +c_{1}}-10 \end {array} \]

Maple trace

`Methods for first order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
trying 1st order linear 
<- 1st order linear successful`
 

Solution by Maple

Time used: 0.0 (sec). Leaf size: 10

dsolve(diff(y(t),t)-y(t)=10,y(t), singsol=all)
 

\[ y \left (t \right ) = -10+{\mathrm e}^{t} c_{1} \]

Solution by Mathematica

Time used: 0.032 (sec). Leaf size: 18

DSolve[y'[t]-y[t]==10,y[t],t,IncludeSingularSolutions -> True]
 

\begin{align*} y(t)\to -10+c_1 e^t \\ y(t)\to -10 \\ \end{align*}