Internal
problem
ID
[177]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.7
(population
models).
Problems
at
page
82
Problem
number
:
7
Date
solved
:
Saturday, March 29, 2025 at 04:38:24 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(x(t),t) = 4*x(t)*(7-x(t)); ic:=x(0) = 11; dsolve([ode,ic],x(t), singsol=all);
ode=D[x[t],t]==4*x[t]*(7-x[t]); ic={x[0]==11}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq((4*x(t) - 28)*x(t) + Derivative(x(t), t),0) ics = {x(0): 11} dsolve(ode,func=x(t),ics=ics)