23.3.167 problem 169

Internal problem ID [5881]
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 : 169
Date solved : Friday, October 03, 2025 at 01:45:00 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} \left (\operatorname {a0} -\operatorname {a2} \operatorname {csch}\left (x \right )^{2}+4 \operatorname {a1} \sinh \left (x \right )^{2}\right ) y+\coth \left (x \right ) y^{\prime }+y^{\prime \prime }&=0 \end{align*}
Maple. Time used: 0.296 (sec). Leaf size: 71
ode:=(a0-a2*csch(x)^2+4*a1*sinh(x)^2)*y(x)+coth(x)*diff(y(x),x)+diff(diff(y(x),x),x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = c_1 \operatorname {csch}\left (x \right )^{-\sqrt {\operatorname {a2}}} \operatorname {HeunC}\left (0, \sqrt {\operatorname {a2}}, -\frac {1}{2}, -\operatorname {a1} , \frac {1}{4}+\frac {\operatorname {a0}}{4}+\frac {\operatorname {a2}}{4}, -\sinh \left (x \right )^{2}\right )+c_2 \operatorname {csch}\left (x \right )^{\sqrt {\operatorname {a2}}} \operatorname {HeunC}\left (0, -\sqrt {\operatorname {a2}}, -\frac {1}{2}, -\operatorname {a1} , \frac {1}{4}+\frac {\operatorname {a0}}{4}+\frac {\operatorname {a2}}{4}, -\sinh \left (x \right )^{2}\right ) \]
Mathematica
ode=(a0 - a2*Csch[x]^2 + 4*a1*Sinh[x]^2)*y[x] + Coth[x]*D[y[x],x] + D[y[x],{x,2}] == 0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
a0 = symbols("a0") 
a1 = symbols("a1") 
a2 = symbols("a2") 
y = Function("y") 
ode = Eq((a0 + 4*a1*sinh(x)**2 - a2/sinh(x)**2)*y(x) + Derivative(y(x), (x, 2)) + Derivative(y(x), x)/tanh(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : The given ODE -(a2*y(x) - (a0*y(x) + 4*a1*y(x)*sinh(x)**2 + Derivative(y(x), (