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