Internal
problem
ID
[25106]
Book
:
Ordinary
Differential
Equations.
By
William
Adkins
and
Mark
G
Davidson.
Springer.
NY.
2010.
ISBN
978-1-4614-3617-1
Section
:
Chapter
1.
First
order
differential
equations.
Exercises
at
page
59
Problem
number
:
12
Date
solved
:
Thursday, October 02, 2025 at 11:50:21 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(t),t)+a*y(t) = b; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,1}] +a*y[t]== b; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(a*y(t) - b + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)