Internal
problem
ID
[11548]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
5,
linear
fifth
and
higher
order
Problem
number
:
1588
Date
solved
:
Sunday, March 30, 2025 at 08:24:40 PM
CAS
classification
:
[[_high_order, _with_linear_symmetries]]
ode:=x^10*diff(diff(diff(diff(diff(y(x),x),x),x),x),x)-a*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=x^10*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**10*Derivative(y(x), (x, 5)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : solve: Cannot solve -a*y(x) + x**10*Derivative(y(x), (x, 5))