Internal
problem
ID
[23151]
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
:
4
Date
solved
:
Thursday, October 02, 2025 at 09:23:31 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(z(t),t),t)-3*diff(z(t),t)+2*z(t) = 4*sin(3*t); dsolve(ode,z(t), singsol=all);
ode=D[z[t],{t,2}]-3*D[z[t],t]+2*z[t]==4*Sin[3*t]; ic={}; DSolve[{ode,ic},z[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") z = Function("z") ode = Eq(2*z(t) - 4*sin(3*t) - 3*Derivative(z(t), t) + Derivative(z(t), (t, 2)),0) ics = {} dsolve(ode,func=z(t),ics=ics)