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