1.596 problem 610

Internal problem ID [8086]

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

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

\[ \boxed {x^{2} \left (2 x +1\right ) y^{\prime \prime }+x \left (9+13 x \right ) y^{\prime }+\left (5 x +7\right ) y=0} \]

Solution by Maple

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

dsolve(x^2*(1+2*x)*diff(y(x),x$2)+x*(9+13*x)*diff(y(x),x)+(7+5*x)*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {c_{1} \left (143 x^{2}+104 x +20\right )}{x^{7}}+\frac {c_{2} \left (35 x^{3}-45 x^{2}+36 x -20\right ) \left (2 x +1\right )^{\frac {7}{2}}}{x^{7}} \]

Solution by Mathematica

Time used: 0.104 (sec). Leaf size: 58

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

\[ y(x)\to \frac {c_1 (13 x (11 x+8)+20)}{143 x^7}+\frac {c_2 \left (35 x^3-45 x^2+36 x-20\right ) (2 x+1)^{7/2}}{315 x^7} \]