Internal
problem
ID
[7456]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.3,
Linear
equations.
Exercises.
page
54
Problem
number
:
40
Date
solved
:
Tuesday, September 30, 2025 at 04:36:21 PM
CAS
classification
:
[_quadrature]
ode:=diff(u(t),t) = alpha*(1-u(t))-beta*u(t); dsolve(ode,u(t), singsol=all);
ode=D[u[t],t]==\[Alpha]*(1-u[t])-\[Beta]*u[t]; ic={}; DSolve[{ode,ic},u[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") Alpha = symbols("Alpha") BETA = symbols("BETA") u = Function("u") ode = Eq(-Alpha*(1 - u(t)) + BETA*u(t) + Derivative(u(t), t),0) ics = {} dsolve(ode,func=u(t),ics=ics)