60.7.9 problem 1599 (6.9)

Internal problem ID [11559]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 6, non-linear second order
Problem number : 1599 (6.9)
Date solved : Sunday, March 30, 2025 at 08:25:09 PM
CAS classification : [NONE]

\begin{align*} y^{\prime \prime }+d +b x y+c y+a y^{3}&=0 \end{align*}

Maple
ode:=diff(diff(y(x),x),x)+d+b*x*y(x)+c*y(x)+a*y(x)^3 = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=d + c*y[x] + b*x*y[x] + a*y[x]^3 + D[y[x],{x,2}] == 0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
a = symbols("a") 
b = symbols("b") 
c = symbols("c") 
d = symbols("d") 
y = Function("y") 
ode = Eq(a*y(x)**3 + b*x*y(x) + c*y(x) + d + Derivative(y(x), (x, 2)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : solve: Cannot solve a*y(x)**3 + b*x*y(x) + c*y(x) + d + Derivative(y(x), (x, 2))