Internal
problem
ID
[18472]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
24.
Problems
at
page
62
Problem
number
:
5
Date
solved
:
Monday, March 31, 2025 at 05:30:59 PM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = k*(A-n*x(t))*(M-m*x(t)); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==k*(A-n*x[t])*(M-m*x[t]); ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") A = symbols("A") M = symbols("M") k = symbols("k") m = symbols("m") n = symbols("n") x = Function("x") ode = Eq(-k*(A - n*x(t))*(M - m*x(t)) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)