Internal
problem
ID
[21075]
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.c
Date
solved
:
Thursday, October 02, 2025 at 07:04:33 PM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = mu-x(t)^3; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==\[Mu]-x[t]^3; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") mu = symbols("mu") x = Function("x") ode = Eq(-mu + x(t)**3 + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)