Internal
problem
ID
[4495]
Book
:
Differential
equations
for
engineers
by
Wei-Chau
XIE,
Cambridge
Press
2010
Section
:
Chapter
4.
Linear
Differential
Equations.
Page
183
Problem
number
:
52
Date
solved
:
Tuesday, March 04, 2025 at 06:49:04 PM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(diff(y(x),x),x),x),x)-8*diff(diff(y(x),x),x)+16*y(x) = 32*exp(2*x)+16*x^3; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,4}]-8*D[y[x],{x,2}]+16*y[x]==32*Exp[2*x]+16*x^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-16*x**3 + 16*y(x) - 32*exp(2*x) - 8*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 4)),0) ics = {} dsolve(ode,func=y(x),ics=ics)