Internal
problem
ID
[2810]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
4.
Qualitative
theory
of
differential
equations.
Section
4.2
(Stability
of
linear
systems).
Page
383
Problem
number
:
12
Date
solved
:
Sunday, March 30, 2025 at 12:20:58 AM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = -x(t)*(1-x(t)); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==-x[t]*(1-x[t]); ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq((1 - x(t))*x(t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)