59.2.3 problem 3

Internal problem ID [9996]
Book : Collection of Kovacic problems
Section : section 2. Solution found using all possible Kovacic cases
Problem number : 3
Date solved : Wednesday, March 05, 2025 at 08:01:57 AM
CAS classification : [[_Emden, _Fowler]]

\begin{align*} y^{\prime \prime }&=\frac {12 y}{x^{2}} \end{align*}

Maple. Time used: 0.003 (sec). Leaf size: 15
ode:=diff(diff(y(x),x),x) = 12/x^2*y(x); 
dsolve(ode,y(x), singsol=all);
 
\[ y = \frac {c_{2} x^{7}+c_{1}}{x^{3}} \]
Mathematica. Time used: 0.011 (sec). Leaf size: 18
ode=D[y[x],{x,2}]==((4*(7/2)^2-1)/(4*x^2))*y[x]; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\[ y(x)\to \frac {c_2 x^7+c_1}{x^3} \]
Sympy. Time used: 0.053 (sec). Leaf size: 12
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(Derivative(y(x), (x, 2)) - 12*y(x)/x**2,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = \frac {C_{1}}{x^{3}} + C_{2} x^{4} \]