Internal
problem
ID
[11509]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
4,
linear
fourth
order
Problem
number
:
1549
Date
solved
:
Wednesday, March 05, 2025 at 02:27:11 PM
CAS
classification
:
[[_high_order, _missing_y]]
ode:=x*diff(diff(diff(diff(y(x),x),x),x),x)+5*diff(diff(diff(y(x),x),x),x)-24 = 0; dsolve(ode,y(x), singsol=all);
ode=-24 + 5*Derivative[3][y][x] + x*Derivative[4][y][x] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*Derivative(y(x), (x, 4)) + 5*Derivative(y(x), (x, 3)) - 24,0) ics = {} dsolve(ode,func=y(x),ics=ics)