1.470 problem 483

Internal problem ID [7960]

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

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

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

Solution by Maple

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

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

\[ y \left (x \right ) = c_{1} x^{2}-\frac {c_{2} \left (12 \ln \left (x +1\right ) x^{4}-12 x^{4} \ln \left (x \right )-12 x^{3}+6 x^{2}-4 x +3\right )}{12 x^{2}} \]

Solution by Mathematica

Time used: 0.045 (sec). Leaf size: 52

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

\[ y(x)\to c_1 x^2+\frac {c_2 \left (12 x^4 \log (x)-12 x^4 \log (x+1)+12 x^3-6 x^2+4 x-3\right )}{12 x^2} \]