6.26 problem 26

Internal problem ID [593]

Book: Elementary differential equations and boundary value problems, 10th ed., Boyce and DiPrima
Section: Miscellaneous problems, end of chapter 2. Page 133
Problem number: 26.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [[_homogeneous, class A], _dAlembert]

Solve \begin {gather*} \boxed {y^{\prime } x -{\mathrm e}^{\frac {y}{x}} x -y=0} \end {gather*}

Solution by Maple

Time used: 0.008 (sec). Leaf size: 15

dsolve(x*diff(y(x),x) = exp(y(x)/x)*x+y(x),y(x), singsol=all)
 

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

Solution by Mathematica

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

DSolve[x*y'[x] == Exp[y[x]/x]*x+y[x],y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to -x \log (-\log (x)-c_1) \\ \end{align*}