Internal
problem
ID
[21903]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
II.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
36.
Nonlinear
differential
equations.
Page
1203
Problem
number
:
36-32
Date
solved
:
Thursday, October 02, 2025 at 08:05:52 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=diff(diff(x(t),t),t) = 4*x(t)^3-4*x(t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]==4*x[t]^3-4*x[t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-4*x(t)**3 + 4*x(t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)
Timed Out