1.30 problem 31

Internal problem ID [6321]

Book: Own collection of miscellaneous problems
Section: section 1.0
Problem number: 31.
ODE order: 1.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {y^{\prime }-\frac {5 x^{2}-y x +y^{2}}{x^{2}}=0} \end {gather*}

Solution by Maple

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

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

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

Solution by Mathematica

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

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

\begin{align*} y(x)\to x+2 x \tan (2 (\log (x)+c_1)) \\ \end{align*}