1.519 problem 533

Internal problem ID [8009]

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

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

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

Solution by Maple

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

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

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

Solution by Mathematica

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

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

\[ y(x)\to \frac {c_2 \sqrt [6]{6 x+4}+2^{5/6} c_1}{\sqrt {x}} \]