59.1.64 problem 66

Internal problem ID [9236]
Book : Collection of Kovacic problems
Section : section 1
Problem number : 66
Date solved : Wednesday, March 05, 2025 at 07:38:15 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} \left (2 x^{5}+1\right ) y^{\prime \prime }+14 x^{4} y^{\prime }+10 x^{3} y&=0 \end{align*}

Maple. Time used: 0.098 (sec). Leaf size: 30
ode:=(2*x^5+1)*diff(diff(y(x),x),x)+14*x^4*diff(y(x),x)+10*x^3*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = \frac {c_{1} x}{\left (2 x^{5}+1\right )^{{2}/{5}}}+c_{2} \operatorname {hypergeom}\left (\left [\frac {1}{5}, 1\right ], \left [\frac {4}{5}\right ], -2 x^{5}\right ) \]
Mathematica
ode=(1+2*x^5)*D[y[x],{x,2}]+14*x^4*D[y[x],x]+10*x^3*y[x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Timed out

Sympy. Time used: 0.525 (sec). Leaf size: 87
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(14*x**4*Derivative(y(x), x) + 10*x**3*y(x) + (2*x**5 + 1)*Derivative(y(x), (x, 2)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = \frac {\sqrt [5]{2 x^{5} + 1} \left (C_{1} \sqrt [5]{\frac {x^{5}}{2 x^{5} + 1}} {{}_{2}F_{1}\left (\begin {matrix} 0, \frac {2}{5} \\ \frac {6}{5} \end {matrix}\middle | {\frac {2 x^{5}}{2 x^{5} + 1}} \right )} + C_{2} {{}_{2}F_{1}\left (\begin {matrix} - \frac {1}{5}, \frac {1}{5} \\ \frac {4}{5} \end {matrix}\middle | {\frac {2 x^{5}}{2 x^{5} + 1}} \right )}\right ) \left (x^{5}\right )^{\frac {2}{5}}}{x^{2} \left (x^{5} + \frac {1}{2}\right )^{\frac {2}{5}}} \]