Internal
problem
ID
[22415]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
1.
Differential
equations
in
general.
A
Exercises
at
page
12
Problem
number
:
5
(c)
Date
solved
:
Thursday, October 02, 2025 at 08:38:40 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
With initial conditions
ode:=diff(diff(s(t),t),t) = -9*s(t); ic:=[s(0) = 9, D(s)(0) = 18]; dsolve([ode,op(ic)],s(t), singsol=all);
ode=D[s[t],{t,2}]==-9*s[t]; ic={s[0]==9,Derivative[1][s][0] ==18}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(9*s(t) + Derivative(s(t), (t, 2)),0) ics = {s(0): 9, Subs(Derivative(s(t), t), t, 0): 18} dsolve(ode,func=s(t),ics=ics)