Internal
problem
ID
[23097]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
4.
Linear
equations
of
the
first
order.
Exercise
4a
at
page
56
Problem
number
:
5
(ii)
Date
solved
:
Thursday, October 02, 2025 at 09:20:08 PM
CAS
classification
:
[[_linear, `class A`]]
With initial conditions
ode:=diff(y(t),t)-6*y(t) = exp(6*t); ic:=[y(0) = 1]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=D[y[t],t]-6*y[t]==Exp[6*t]; ic={y[0]==1}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-6*y(t) - exp(6*t) + Derivative(y(t), t),0) ics = {y(0): 1} dsolve(ode,func=y(t),ics=ics)