76.24.6 problem 6

Internal problem ID [17734]
Book : Differential equations. An introduction to modern methods and applications. James Brannan, William E. Boyce. Third edition. Wiley 2015
Section : Chapter 6. Systems of First Order Linear Equations. Section 6.2 (Basic Theory of First Order Linear Systems). Problems at page 398
Problem number : 6
Date solved : Monday, March 31, 2025 at 04:26:12 PM
CAS classification : [[_high_order, _with_linear_symmetries]]

\begin{align*} \left (x^{2}-25\right ) y^{\left (6\right )}+x^{2} y^{\prime \prime }+5 y&=0 \end{align*}

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

Timed out

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x**2*Derivative(y(x), (x, 2)) + (x**2 - 25)*Derivative(y(x), (x, 6)) + 5*y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : solve: Cannot solve x**2*Derivative(y(x), (x, 2)) + (x**2 - 25)*Derivative(y(x), (x, 6)) + 5*y(x)