Internal
problem
ID
[23153]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
5.
Linear
equations
of
the
second
order
with
constant
coefficients.
Exercise
5c
at
page
83
Problem
number
:
6
Date
solved
:
Thursday, October 02, 2025 at 09:23:32 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(t),t),t)+3*diff(y(t),t)+5*y(t) = 4*exp(3*t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]+3*D[y[t],t]+5*y[t]==4*Exp[3*t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(5*y(t) - 4*exp(3*t) + 3*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)