2.6 problem 6

Internal problem ID [4584]

Book: Engineering Mathematics. By K. A. Stroud. 5th edition. Industrial press Inc. NY. 2001
Section: Program 24. First order differential equations. Further problems 24. page 1068
Problem number: 6.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [[_homogeneous, class A], _exact, _rational, [_Abel, 2nd type, class A]]

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

Solution by Maple

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

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

\begin{align*} y \relax (x ) = \frac {\frac {c_{1} x}{2}-\frac {\sqrt {5 c_{1}^{2} x^{2}+4}}{2}}{c_{1}} \\ y \relax (x ) = \frac {\frac {c_{1} x}{2}+\frac {\sqrt {5 c_{1}^{2} x^{2}+4}}{2}}{c_{1}} \\ \end{align*}

Solution by Mathematica

Time used: 0.191 (sec). Leaf size: 102

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

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