1.21 problem Problem 29

1.21.1 Solving as exact ode
1.21.2 Maple step by step solution

Internal problem ID [2607]
Internal file name [OUTPUT/2099_Sunday_June_05_2022_02_48_27_AM_75787558/index.tex]

Book: Differential equations and linear algebra, Stephen W. Goode and Scott A Annin. Fourth edition, 2015
Section: Chapter 1, First-Order Differential Equations. Section 1.2, Basic Ideas and Terminology. page 21
Problem number: Problem 29.
ODE order: 1.
ODE degree: 1.

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

Maple gives the following as the ode type

[_rational, [_1st_order, `_with_symmetry_[F(x)*G(y),0]`], [_Abel, `2nd type`, `class B`]]

\[ \boxed {y^{\prime }-\frac {1-y^{2}}{2+2 y x}=0} \]

1.21.1 Solving as exact ode

Entering Exact first order ODE solver. (Form one type)

To solve an ode of the form\begin {equation} M\left ( x,y\right ) +N\left ( x,y\right ) \frac {dy}{dx}=0\tag {A} \end {equation} We assume there exists a function \(\phi \left ( x,y\right ) =c\) where \(c\) is constant, that satisfies the ode. Taking derivative of \(\phi \) w.r.t. \(x\) gives\[ \frac {d}{dx}\phi \left ( x,y\right ) =0 \] Hence\begin {equation} \frac {\partial \phi }{\partial x}+\frac {\partial \phi }{\partial y}\frac {dy}{dx}=0\tag {B} \end {equation} Comparing (A,B) shows that\begin {align*} \frac {\partial \phi }{\partial x} & =M\\ \frac {\partial \phi }{\partial y} & =N \end {align*}

But since \(\frac {\partial ^{2}\phi }{\partial x\partial y}=\frac {\partial ^{2}\phi }{\partial y\partial x}\) then for the above to be valid, we require that\[ \frac {\partial M}{\partial y}=\frac {\partial N}{\partial x}\] If the above condition is satisfied, then the original ode is called exact. We still need to determine \(\phi \left ( x,y\right ) \) but at least we know now that we can do that since the condition \(\frac {\partial ^{2}\phi }{\partial x\partial y}=\frac {\partial ^{2}\phi }{\partial y\partial x}\) is satisfied. If this condition is not satisfied then this method will not work and we have to now look for an integrating factor to force this condition, which might or might not exist. The first step is to write the ODE in standard form to check for exactness, which is \[ M(x,y) \mathop {\mathrm {d}x}+ N(x,y) \mathop {\mathrm {d}y}=0 \tag {1A} \] Therefore \begin {align*} \left (2 x y +2\right )\mathop {\mathrm {d}y} &= \left (-y^{2}+1\right )\mathop {\mathrm {d}x}\\ \left (y^{2}-1\right )\mathop {\mathrm {d}x} + \left (2 x y +2\right )\mathop {\mathrm {d}y} &= 0 \tag {2A} \end {align*}

Comparing (1A) and (2A) shows that \begin {align*} M(x,y) &= y^{2}-1\\ N(x,y) &= 2 x y +2 \end {align*}

The next step is to determine if the ODE is is exact or not. The ODE is exact when the following condition is satisfied \[ \frac {\partial M}{\partial y} = \frac {\partial N}{\partial x} \] Using result found above gives \begin {align*} \frac {\partial M}{\partial y} &= \frac {\partial }{\partial y} \left (y^{2}-1\right )\\ &= 2 y \end {align*}

And \begin {align*} \frac {\partial N}{\partial x} &= \frac {\partial }{\partial x} \left (2 x y +2\right )\\ &= 2 y \end {align*}

Since \(\frac {\partial M}{\partial y}= \frac {\partial N}{\partial x}\), then the ODE is exact The following equations are now set up to solve for the function \(\phi \left (x,y\right )\) \begin {align*} \frac {\partial \phi }{\partial x } &= M\tag {1} \\ \frac {\partial \phi }{\partial y } &= N\tag {2} \end {align*}

Integrating (1) w.r.t. \(x\) gives \begin{align*} \int \frac {\partial \phi }{\partial x} \mathop {\mathrm {d}x} &= \int M\mathop {\mathrm {d}x} \\ \int \frac {\partial \phi }{\partial x} \mathop {\mathrm {d}x} &= \int y^{2}-1\mathop {\mathrm {d}x} \\ \tag{3} \phi &= \left (y^{2}-1\right ) x+ f(y) \\ \end{align*} Where \(f(y)\) is used for the constant of integration since \(\phi \) is a function of both \(x\) and \(y\). Taking derivative of equation (3) w.r.t \(y\) gives \begin{equation} \tag{4} \frac {\partial \phi }{\partial y} = 2 x y+f'(y) \end{equation} But equation (2) says that \(\frac {\partial \phi }{\partial y} = 2 x y +2\). Therefore equation (4) becomes \begin{equation} \tag{5} 2 x y +2 = 2 x y+f'(y) \end{equation} Solving equation (5) for \( f'(y)\) gives \[ f'(y) = 2 \] Integrating the above w.r.t \(y\) gives \begin{align*} \int f'(y) \mathop {\mathrm {d}y} &= \int \left ( 2\right ) \mathop {\mathrm {d}y} \\ f(y) &= 2 y+ c_{1} \\ \end{align*} Where \(c_{1}\) is constant of integration. Substituting result found above for \(f(y)\) into equation (3) gives \(\phi \) \[ \phi = \left (y^{2}-1\right ) x +2 y+ c_{1} \] But since \(\phi \) itself is a constant function, then let \(\phi =c_{2}\) where \(c_{2}\) is new constant and combining \(c_{1}\) and \(c_{2}\) constants into new constant \(c_{1}\) gives the solution as \[ c_{1} = \left (y^{2}-1\right ) x +2 y \]

Summary

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

Figure 26: Slope field plot

Verification of solutions

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

1.21.2 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & y^{\prime }-\frac {1-y^{2}}{2+2 y x}=0 \\ \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 }=\frac {1-y^{2}}{2+2 y x} \end {array} \]

Maple trace Kovacic algorithm successful

`Methods for first order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
trying 1st order linear 
trying Bernoulli 
trying separable 
trying inverse linear 
      -> Trying a Liouvillian solution using Kovacics algorithm 
         A Liouvillian solution exists 
         Reducible group (found an exponential solution) 
      <- Kovacics algorithm successful 
   <- Abel AIR successful: ODE belongs to the 2F1 3-parameter class 
<- inverse linear successful`
 

Solution by Maple

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

dsolve(diff(y(x),x)=(1-y(x)^2)/(2*(1+x*y(x))),y(x), singsol=all)
 

\[ c_{1} +\frac {1}{\left (y \left (x \right )-1\right ) \left (x y \left (x \right )+x +2\right )} = 0 \]

Solution by Mathematica

Time used: 0.463 (sec). Leaf size: 58

DSolve[y'[x]==(1-y[x]^2)/(2*(1+x*y[x])),y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to -\frac {1+\sqrt {x^2+c_1 x+1}}{x} \\ y(x)\to \frac {-1+\sqrt {x^2+c_1 x+1}}{x} \\ y(x)\to -1 \\ y(x)\to 1 \\ \end{align*}