Internal
problem
ID
[23114]
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
4b
at
page
64
Problem
number
:
6
(b)
Date
solved
:
Thursday, October 02, 2025 at 09:23:01 PM
CAS
classification
:
[[_linear, `class A`]]
With initial conditions
ode:=diff(v(t),t) = 60*t-4*v(t); ic:=[v(0) = 0]; dsolve([ode,op(ic)],v(t), singsol=all);
ode=D[v[t],t]==60*t-4*v[t]; ic={v[0]==0}; DSolve[{ode,ic},v[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") v = Function("v") ode = Eq(-60*t + 4*v(t) + Derivative(v(t), t),0) ics = {v(0): 0} dsolve(ode,func=v(t),ics=ics)