Internal
problem
ID
[23474]
Book
:
Ordinary
differential
equations
with
modern
applications.
Ladas,
G.
E.
and
Finizio,
N.
Wadsworth
Publishing.
California.
1978.
ISBN
0-534-00552-7.
QA372.F56
Section
:
Chapter
2.
Linear
differential
equations.
Exercise
at
page
93
Problem
number
:
29
Date
solved
:
Thursday, October 02, 2025 at 09:42:12 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=5*diff(diff(y(t),t),t)+10*diff(y(t),t)+20*y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=5*D[y[t],{t,2}]+10*D[y[t],t]+20*y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(20*y(t) + 10*Derivative(y(t), t) + 5*Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)