1.168 problem 170

Internal problem ID [7658]

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

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

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

Solution by Maple

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

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

\[ y \left (x \right ) = c_{1} \sqrt {x}+\frac {c_{2} \left (\ln \left (x +1\right ) x -x \ln \left (x \right )-1\right )}{\sqrt {x}} \]

Solution by Mathematica

Time used: 0.048 (sec). Leaf size: 32

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

\[ y(x)\to \frac {c_1 x+c_2 (-x \log (x)+x \log (x+1)-1)}{\sqrt {x}} \]