1.79 problem 82

Internal problem ID [2715]

Book: Differential equations for engineers by Wei-Chau XIE, Cambridge Press 2010
Section: Chapter 2. First-Order and Simple Higher-Order Differential Equations. Page 78
Problem number: 82.
ODE order: 1.
ODE degree: 2.

CAS Maple gives this as type [_quadrature]

\[ \boxed {x \left ({y^{\prime }}^{2}-1\right )-2 y^{\prime }=0} \]

Solution by Maple

Time used: 0.109 (sec). Leaf size: 49

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

\begin{align*} y \left (x \right ) = \sqrt {x^{2}+1}-\operatorname {arctanh}\left (\frac {1}{\sqrt {x^{2}+1}}\right )+\ln \left (x \right )+c_{1} \\ y \left (x \right ) = -\sqrt {x^{2}+1}+\operatorname {arctanh}\left (\frac {1}{\sqrt {x^{2}+1}}\right )+\ln \left (x \right )+c_{1} \\ \end{align*}

Solution by Mathematica

Time used: 0.03 (sec). Leaf size: 59

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

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