3.4 problem 4.3 (d)

3.4.1 Solving as quadrature ode
3.4.2 Maple step by step solution

Internal problem ID [13301]
Internal file name [OUTPUT/12473_Wednesday_February_14_2024_02_06_35_AM_63477320/index.tex]

Book: Ordinary Differential Equations. An introduction to the fundamentals. Kenneth B. Howell. second edition. CRC Press. FL, USA. 2020
Section: Chapter 4. SEPARABLE FIRST ORDER EQUATIONS. Additional exercises. page 90
Problem number: 4.3 (d).
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 }=\sqrt {x^{2}+1}} \]

3.4.1 Solving as quadrature ode

Integrating both sides gives \begin {align*} y &= \int { \sqrt {x^{2}+1}\,\mathop {\mathrm {d}x}}\\ &= \frac {x \sqrt {x^{2}+1}}{2}+\frac {\operatorname {arcsinh}\left (x \right )}{2}+c_{1} \end {align*}

Summary

The solution(s) found are the following \begin{align*} \tag{1} y &= \frac {x \sqrt {x^{2}+1}}{2}+\frac {\operatorname {arcsinh}\left (x \right )}{2}+c_{1} \\ \end{align*}

Figure 81: Slope field plot

Verification of solutions

\[ y = \frac {x \sqrt {x^{2}+1}}{2}+\frac {\operatorname {arcsinh}\left (x \right )}{2}+c_{1} \] Verified OK.

3.4.2 Maple step by step solution

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

Maple trace

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

Solution by Maple

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

dsolve(diff(y(x),x)=sqrt(1+x^2),y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {x \sqrt {x^{2}+1}}{2}+\frac {\operatorname {arcsinh}\left (x \right )}{2}+c_{1} \]

Solution by Mathematica

Time used: 0.024 (sec). Leaf size: 40

DSolve[y'[x]==Sqrt[1+x^2],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {1}{2} \sqrt {x^2+1} x-\frac {1}{2} \log \left (\sqrt {x^2+1}-x\right )+c_1 \]