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