54.7.73 problem 1682 (book 6.91)

Internal problem ID [12922]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 6, non-linear second order
Problem number : 1682 (book 6.91)
Date solved : Friday, October 03, 2025 at 03:50:49 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} 9 x^{2} y^{\prime \prime }+a y^{3}+2 y&=0 \end{align*}
Maple. Time used: 0.020 (sec). Leaf size: 35
ode:=9*x^2*diff(diff(y(x),x),x)+a*y(x)^3+2*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = c_2 \,\operatorname {JacobiSN}\left (\frac {\left (2 c_1 \,x^{3}+\sqrt {2}\, \sqrt {x^{{20}/{3}} a}\right ) c_2}{2 x^{3}}, i\right ) x^{{1}/{3}} \]
Mathematica. Time used: 2.005 (sec). Leaf size: 41
ode=2*y[x] + a*y[x]^3 + 9*x^2*D[y[x],{x,2}] == 0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to c_2 \sqrt [3]{x} \text {sn}\left (\left .\left (c_1+\frac {\sqrt {a x^{20/3}}}{\sqrt {2} x^3}\right ) c_2\right |-1\right ) \end{align*}
Sympy
from sympy import * 
x = symbols("x") 
a = symbols("a") 
y = Function("y") 
ode = Eq(a*y(x)**3 + 9*x**2*Derivative(y(x), (x, 2)) + 2*y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : solve: Cannot solve a*y(x)**3 + 9*x**2*Derivative(y(x), (x, 2)) + 2*y(x)