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