Internal
problem
ID
[21076]
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.d
Date
solved
:
Thursday, October 02, 2025 at 07:04:37 PM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = x(t)-mu*x(t)/(1+x(t)^2); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==x[t]- (\[Mu]*x[t])/(1+x[t]^2); 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)/(x(t)**2 + 1) - x(t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)