Internal
problem
ID
[23132]
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
5a
at
page
74
Problem
number
:
18
Date
solved
:
Thursday, October 02, 2025 at 09:23:14 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
With initial conditions
ode:=diff(diff(z(t),t),t)-3*diff(z(t),t)+z(t) = 0; ic:=[z(0) = 1, D(z)(0) = 0]; dsolve([ode,op(ic)],z(t), singsol=all);
ode=D[z[t],{t,2}]-3*D[z[t],t]+z[t]==0; ic={z[0]==1,Derivative[1][z][0] ==0}; DSolve[{ode,ic},z[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") z = Function("z") ode = Eq(z(t) - 3*Derivative(z(t), t) + Derivative(z(t), (t, 2)),0) ics = {z(0): 1, Subs(Derivative(z(t), t), t, 0): 0} dsolve(ode,func=z(t),ics=ics)