1.752 problem 769

Internal problem ID [8242]

Book: Collection of Kovacic problems
Section: section 1
Problem number: 769.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _with_linear_symmetries]]

\[ \boxed {x^{2} y^{\prime \prime }+\left (\frac {5}{3} x +x^{2}\right ) y^{\prime }-\frac {y}{3}=0} \]

Solution by Maple

Time used: 0.046 (sec). Leaf size: 35

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

\[ y \left (x \right ) = c_{1} {\mathrm e}^{-x} x^{\frac {1}{3}} \operatorname {hypergeom}\left (\left [2\right ], \left [\frac {7}{3}\right ], x\right )+\frac {c_{2} {\mathrm e}^{-x} \operatorname {hypergeom}\left (\left [\frac {2}{3}\right ], \left [-\frac {1}{3}\right ], x\right )}{x} \]

Solution by Mathematica

Time used: 0.09 (sec). Leaf size: 47

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

\[ y(x)\to -\frac {-3 c_1 x+3 c_2 e^{-x} \sqrt [3]{x}+c_2 (1-3 x) \Gamma \left (\frac {1}{3},x\right )+c_1}{3 x} \]