37.25 problem 1147

Internal problem ID [3831]

Book: Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section: Various 37
Problem number: 1147.
ODE order: 1.
ODE degree: -1.

CAS Maple gives this as type [[_1st_order, _with_linear_symmetries], _Clairaut]

Solve \begin {gather*} \boxed {\ln \left (y^{\prime }\right )+a \left (y^{\prime } x -y\right )=0} \end {gather*}

Solution by Maple

Time used: 0.031 (sec). Leaf size: 36

dsolve(ln(diff(y(x),x))+a*(x*diff(y(x),x)-y(x)) = 0,y(x), singsol=all)
 

\begin{align*} y \relax (x ) = \frac {\ln \left (-\frac {1}{a x}\right )}{a}-\frac {1}{a} \\ y \relax (x ) = c_{1} x +\frac {\ln \left (c_{1}\right )}{a} \\ \end{align*}

Solution by Mathematica

Time used: 0.048 (sec). Leaf size: 36

DSolve[Log[y'[x]]+a( x y'[x]-y[x])==0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to \frac {\log (c_1)}{a}+c_1 x \\ y(x)\to \frac {\log \left (-\frac {1}{a x}\right )-1}{a} \\ \end{align*}