Internal
problem
ID
[11549]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
5,
linear
fifth
and
higher
order
Problem
number
:
1589
Date
solved
:
Sunday, March 30, 2025 at 08:24:41 PM
CAS
classification
:
[[_high_order, _with_linear_symmetries]]
ode:=x^(5/2)*diff(diff(diff(diff(diff(y(x),x),x),x),x),x)-a*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=x^(2+1/2)*D[y[x],{x,5}]-a*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a*y(x) + x**(5/2)*Derivative(y(x), (x, 5)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : solve: Cannot solve -a*y(x) + x**(5/2)*Derivative(y(x), (x, 5))