Internal
problem
ID
[22568]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
two.
First
order
and
simple
higher
order
ordinary
differential
equations.
A
Exercises
at
page
55
Problem
number
:
1
(e)
Date
solved
:
Thursday, October 02, 2025 at 08:51:47 PM
CAS
classification
:
[[_linear, `class A`]]
With initial conditions
ode:=diff(i(t),t)+3*i(t) = exp(-2*t); ic:=[i(0) = 5]; dsolve([ode,op(ic)],i(t), singsol=all);
ode=D[i[t],t] +3*i[t]==Exp[-2*t]; ic={i[0]==5}; DSolve[{ode,ic},i[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") i = Function("i") ode = Eq(3*i(t) + Derivative(i(t), t) - exp(-2*t),0) ics = {i(0): 5} dsolve(ode,func=i(t),ics=ics)