Internal
problem
ID
[7603]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
4,
Linear
Second-Order
Equations.
EXERCISES
4.2
at
page
164
Problem
number
:
11
Date
solved
:
Tuesday, September 30, 2025 at 04:54:49 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=4*diff(diff(w(t),t),t)+20*diff(w(t),t)+25*w(t) = 0; dsolve(ode,w(t), singsol=all);
ode=4*D[w[t],{t,2}]+20*D[w[t],t]+25*w[t]==0; ic={}; DSolve[{ode,ic},w[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") w = Function("w") ode = Eq(25*w(t) + 20*Derivative(w(t), t) + 4*Derivative(w(t), (t, 2)),0) ics = {} dsolve(ode,func=w(t),ics=ics)