Internal
problem
ID
[21430]
Book
:
A
Textbook
on
Ordinary
Differential
Equations
by
Shair
Ahmad
and
Antonio
Ambrosetti.
Second
edition.
ISBN
978-3-319-16407-6.
Springer
2015
Section
:
Chapter
12.
Stability
theory.
Excercise
12.6
at
page
270
Problem
number
:
22
Date
solved
:
Thursday, October 02, 2025 at 07:31:29 PM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = lambda*x(t)-x(t)^3-x(t)^5; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==\[Lambda]*x[t]-x[t]^3-x[t]^5; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-lambda_*x(t) + x(t)**5 + x(t)**3 + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)
TypeError : cannot determine truth value of Relational: 2 < 4*sqrt(4*_lambda_ + 1)