Internal
problem
ID
[4469]
Book
:
Differential
equations
for
engineers
by
Wei-Chau
XIE,
Cambridge
Press
2010
Section
:
Chapter
4.
Linear
Differential
Equations.
Page
183
Problem
number
:
26
Date
solved
:
Sunday, March 30, 2025 at 03:23:24 AM
CAS
classification
:
[[_high_order, _missing_y]]
ode:=diff(diff(diff(diff(diff(y(x),x),x),x),x),x)+4*diff(diff(diff(y(x),x),x),x) = 7+x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,5}]+4*D[y[x],{x,3}]==7+x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x + 4*Derivative(y(x), (x, 3)) + Derivative(y(x), (x, 5)) - 7,0) ics = {} dsolve(ode,func=y(x),ics=ics)