Internal
problem
ID
[22731]
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
171
Problem
number
:
1
(c)
Date
solved
:
Thursday, October 02, 2025 at 09:14:08 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(s(t),t),t)+b*diff(s(t),t)+omega^2*s(t) = 0; dsolve(ode,s(t), singsol=all);
ode=D[s[t],{t,2}]+b*D[s[t],{t,1}]+\[Omega]^2*s[t]==0; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") b = symbols("b") w = symbols("w") s = Function("s") ode = Eq(b*Derivative(s(t), t) + w**2*s(t) + Derivative(s(t), (t, 2)),0) ics = {} dsolve(ode,func=s(t),ics=ics)