3.19 problem 14 (c)

3.19.1 Existence and uniqueness analysis
3.19.2 Solving as quadrature ode
3.19.3 Maple step by step solution

Internal problem ID [14142]
Internal file name [OUTPUT/13823_Saturday_March_02_2024_02_50_58_PM_53397185/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.1, page 32
Problem number: 14 (c).
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 {25-y^{2}}=0} \] With initial conditions \begin {align*} [y \left (3\right ) = -6] \end {align*}

3.19.1 Existence and uniqueness analysis

This is non linear first order ODE. In canonical form it is written as \begin {align*} y^{\prime } &= f(t,y)\\ &= \sqrt {-y^{2}+25} \end {align*}

The \(y\) domain of \(f(t,y)\) when \(t=3\) is \[ \{-5\le y \le 5\} \] But the point \(y_0 = -6\) is not inside this domain. Hence existence and uniqueness theorem does not apply. There could be infinite number of solutions, or one solution or no solution at all.

3.19.2 Solving as quadrature ode

Integrating both sides gives \begin {align*} \int \frac {1}{\sqrt {-y^{2}+25}}d y &= \int {dt}\\ \arcsin \left (\frac {y}{5}\right )&= t +c_{1} \end {align*}

Initial conditions are used to solve for \(c_{1}\). Substituting \(t=3\) and \(y=-6\) in the above solution gives an equation to solve for the constant of integration. \begin {align*} -\frac {\pi }{2}+\arccos \left (\frac {6}{5}\right ) = 3+c_{1} \end {align*}

The solutions are \begin {align*} c_{1} = -3-\arcsin \left (\frac {6}{5}\right ) \end {align*}

Trying the constant \begin {align*} c_{1} = -3-\arcsin \left (\frac {6}{5}\right ) \end {align*}

Substituting \(c_{1}\) found above in the general solution gives \begin {align*} \arcsin \left (\frac {y}{5}\right ) = t -3-\arcsin \left (\frac {6}{5}\right ) \end {align*}

The constant \(c_{1} = -3-\arcsin \left (\frac {6}{5}\right )\) gives valid solution.

Summary

The solution(s) found are the following \begin{align*} \tag{1} \arcsin \left (\frac {y}{5}\right ) &= t -3-\arcsin \left (\frac {6}{5}\right ) \\ \end{align*}

Verification of solutions

\[ \arcsin \left (\frac {y}{5}\right ) = t -3-\arcsin \left (\frac {6}{5}\right ) \] Verified OK.

3.19.3 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & \left [y^{\prime }-\sqrt {25-y^{2}}=0, y \left (3\right )=-6\right ] \\ \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 }=\sqrt {25-y^{2}} \\ \bullet & {} & \textrm {Separate variables}\hspace {3pt} \\ {} & {} & \frac {y^{\prime }}{\sqrt {25-y^{2}}}=1 \\ \bullet & {} & \textrm {Integrate both sides with respect to}\hspace {3pt} t \\ {} & {} & \int \frac {y^{\prime }}{\sqrt {25-y^{2}}}d t =\int 1d t +c_{1} \\ \bullet & {} & \textrm {Evaluate integral}\hspace {3pt} \\ {} & {} & \arcsin \left (\frac {y}{5}\right )=t +c_{1} \\ \bullet & {} & \textrm {Solve for}\hspace {3pt} y \\ {} & {} & y=5 \sin \left (t +c_{1} \right ) \\ \bullet & {} & \textrm {Use initial condition}\hspace {3pt} y \left (3\right )=-6 \\ {} & {} & -6=5 \sin \left (3+c_{1} \right ) \\ \bullet & {} & \textrm {Solve for}\hspace {3pt} c_{1} \\ {} & {} & c_{1} =-3-\arcsin \left (\frac {6}{5}\right ) \\ \bullet & {} & \textrm {Substitute}\hspace {3pt} c_{1} =-3-\arcsin \left (\frac {6}{5}\right )\hspace {3pt}\textrm {into general solution and simplify}\hspace {3pt} \\ {} & {} & y=5 \sin \left (t -3-\arcsin \left (\frac {6}{5}\right )\right ) \\ \bullet & {} & \textrm {Solution to the IVP}\hspace {3pt} \\ {} & {} & y=5 \sin \left (t -3-\arcsin \left (\frac {6}{5}\right )\right ) \end {array} \]

Maple trace

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

Solution by Maple

Time used: 0.094 (sec). Leaf size: 14

dsolve([diff(y(t),t)=sqrt(25-y(t)^2),y(3) = -6],y(t), singsol=all)
 

\[ y \left (t \right ) = 5 \sin \left (t -3-\arcsin \left (\frac {6}{5}\right )\right ) \]

Solution by Mathematica

Time used: 0.043 (sec). Leaf size: 23

DSolve[{y'[t]==Sqrt[25-y[t]^2],{y[3]==-6}},y[t],t,IncludeSingularSolutions -> True]
 

\[ y(t)\to 5 \cos \left (-2 i \text {arctanh}\left (\sqrt {11}\right )-t+3\right ) \]