Internal
problem
ID
[22766]
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
177
Problem
number
:
2
(c)
Date
solved
:
Thursday, October 02, 2025 at 09:14:26 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
With initial conditions
ode:=diff(diff(s(t),t),t)+16*diff(s(t),t)+64*s(t) = 0; ic:=[s(0) = 0, D(s)(0) = -4]; dsolve([ode,op(ic)],s(t), singsol=all);
ode=D[s[t],{t,2}]+16*D[s[t],{t,1}]+64*s[t]==0; ic={s[0]==0,Derivative[1][s][0] ==-4}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(64*s(t) + 16*Derivative(s(t), t) + Derivative(s(t), (t, 2)),0) ics = {s(0): 0, Subs(Derivative(s(t), t), x, -4): 0} dsolve(ode,func=s(t),ics=ics)
ValueError : Invalid boundary conditions for Derivatives