Internal
problem
ID
[11537]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
4,
linear
fourth
order
Problem
number
:
1577
Date
solved
:
Sunday, March 30, 2025 at 08:24:25 PM
CAS
classification
:
[[_high_order, _quadrature]]
ode:=f*diff(diff(diff(diff(y(x),x),x),x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Derivative[2][f][x]*D[y[x],{x,2}] + 2*Derivative[1][f][x]*Derivative[3][y][x] + f[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*Derivative(y(x), (x, 4)),0) ics = {} dsolve(ode,func=y(x),ics=ics)