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