1.517 problem 531

Internal problem ID [8007]

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

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

\[ \boxed {6 x^{2} y^{\prime \prime }+x \left (10-x \right ) y^{\prime }-\left (x +2\right ) y=0} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 25

dsolve(6*x^2*diff(y(x),x$2)+x*(10-x)*diff(y(x),x)-(2+x)*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {c_{1}}{x}+\frac {c_{2} \left (\int x^{\frac {1}{3}} {\mathrm e}^{\frac {x}{6}}d x \right )}{x} \]

Solution by Mathematica

Time used: 0.034 (sec). Leaf size: 38

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

\[ y(x)\to c_2 \sqrt [3]{x} L_{-\frac {4}{3}}^{\frac {4}{3}}\left (\frac {x}{6}\right )+\frac {6 \sqrt [3]{6} c_1}{x} \]