Internal
problem
ID
[22907]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
4.
Linear
differential
equations.
A
Exercises
at
page
216
Problem
number
:
16
Date
solved
:
Thursday, October 02, 2025 at 09:16:30 PM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(diff(s(t),t),t),t),t)-2*diff(diff(s(t),t),t)+s(t) = 100*cos(3*t); dsolve(ode,s(t), singsol=all);
ode=D[s[t],{t,4}]-2*D[s[t],{t,2}]+s[t]==100*Cos[3*t]; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(s(t) - 100*cos(3*t) - 2*Derivative(s(t), (t, 2)) + Derivative(s(t), (t, 4)),0) ics = {} dsolve(ode,func=s(t),ics=ics)