23.3.483 problem 489

Internal problem ID [6197]
Book : Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section : Part II. Chapter 3. THE DIFFERENTIAL EQUATION IS LINEAR AND OF SECOND ORDER, page 311
Problem number : 489
Date solved : Friday, October 03, 2025 at 01:56:52 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} \left (c \,x^{2}+b x +a \right ) y+x^{2} y^{\prime }+x^{3} y^{\prime \prime }&=0 \end{align*}
Maple. Time used: 0.045 (sec). Leaf size: 93
ode:=(c*x^2+b*x+a)*y(x)+x^2*diff(y(x),x)+x^3*diff(diff(y(x),x),x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = \operatorname {HeunD}\left (0, 4 c +4 b +4 a , -8 a +8 c , 4 a -4 b +4 c , \frac {x +1}{x -1}\right ) \left (c_1 +c_2 \int \frac {1}{x \operatorname {HeunD}\left (0, 4 c +4 b +4 a , -8 a +8 c , 4 a -4 b +4 c , \frac {x +1}{x -1}\right )^{2}}d x \right ) \]
Mathematica
ode=(a + b*x + c*x^2)*y[x] + x^2*D[y[x],x] + 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") 
y = Function("y") 
ode = Eq(x**3*Derivative(y(x), (x, 2)) + x**2*Derivative(y(x), x) + (a + b*x + c*x**2)*y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : The given ODE a*y(x)/x**2 + b*y(x)/x + c*y(x) + x*Derivative(y(x), (x, 2)) + D