59.1.516 problem 532

Internal problem ID [9688]
Book : Collection of Kovacic problems
Section : section 1
Problem number : 532
Date solved : Sunday, March 30, 2025 at 02:44:22 PM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} x^{2} \left (3+4 x \right ) y^{\prime \prime }+x \left (11+4 x \right ) y^{\prime }-\left (3+4 x \right ) y&=0 \end{align*}

Maple. Time used: 0.081 (sec). Leaf size: 41
ode:=x^2*(3+4*x)*diff(diff(y(x),x),x)+x*(11+4*x)*diff(y(x),x)-(3+4*x)*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = \frac {c_1 \left (48 x^{2}+32 x +7\right )}{x^{3}}+c_2 \operatorname {hypergeom}\left (\left [3, 5\right ], \left [\frac {13}{3}\right ], -\frac {4 x}{3}\right ) \left (3+4 x \right )^{{11}/{3}} x^{{1}/{3}} \]
Mathematica. Time used: 0.521 (sec). Leaf size: 143
ode=x^2*(3+4*x)*D[y[x],{x,2}]+x*(11+4*x)*D[y[x],x]-(3+4*x)*y[x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ y(x)\to \frac {1}{48} \left (48 x^2+32 x+7\right ) \exp \left (\int _1^x-\frac {20 K[1]+7}{8 K[1]^2+6 K[1]}dK[1]-\frac {1}{2} \int _1^x\frac {4 K[2]+11}{4 K[2]^2+3 K[2]}dK[2]\right ) \left (c_2 \int _1^x\frac {2304 \exp \left (-2 \int _1^{K[3]}-\frac {20 K[1]+7}{8 K[1]^2+6 K[1]}dK[1]\right )}{\left (48 K[3]^2+32 K[3]+7\right )^2}dK[3]+c_1\right ) \]
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x**2*(4*x + 3)*Derivative(y(x), (x, 2)) + x*(4*x + 11)*Derivative(y(x), x) - (4*x + 3)*y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
False