Internal
problem
ID
[7531]
Book
:
THEORY
OF
DIFFERENTIAL
EQUATIONS
IN
ENGINEERING
AND
MECHANICS.
K.T.
CHAU,
CRC
Press.
Boca
Raton,
FL.
2018
Section
:
Chapter
3.
Ordinary
Differential
Equations.
Section
3.5
HIGHER
ORDER
ODE.
Page
181
Problem
number
:
Example
3.36
Date
solved
:
Sunday, March 30, 2025 at 12:13:49 PM
CAS
classification
:
[[_3rd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(y(t),t),t),t)-diff(diff(y(t),t),t)-diff(y(t),t)+y(t) = g(t); dsolve(ode,y(t), singsol=all);
ode=D[ y[t],{t,3}]-D[y[t],{t,2}]-D[y[t],t]+y[t]==g[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") g = Function("g") ode = Eq(-g(t) + y(t) - Derivative(y(t), t) - Derivative(y(t), (t, 2)) + Derivative(y(t), (t, 3)),0) ics = {} dsolve(ode,func=y(t),ics=ics)