Internal
problem
ID
[21074]
Book
:
A
FIRST
COURSE
IN
DIFFERENTIAL
EQUATIONS
FOR
SCIENTISTS
AND
ENGINEERS.
By
Russell
Herman.
University
of
North
Carolina
Wilmington.
LibreText.
compiled
on
06/09/2025
Section
:
Chapter
7,
Nonlinear
systems.
Problems
section
7.11
Problem
number
:
4.b
Date
solved
:
Thursday, October 02, 2025 at 07:03:21 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x) = y(x)*(mu-y(x))*(mu-2*y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==y[x]*(\[Mu]*y[x])*(\[Mu]-2*y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") mu = symbols("mu") y = Function("y") ode = Eq((-mu + 2*y(x))*(mu - y(x))*y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)