Internal
problem
ID
[15994]
Book
:
DIFFERENTIAL
EQUATIONS
by
Paul
Blanchard,
Robert
L.
Devaney,
Glen
R.
Hall.
4th
edition.
Brooks/Cole.
Boston,
USA.
2012
Section
:
Chapter
1.
First-Order
Differential
Equations.
Exercises
section
1.6
page
89
Problem
number
:
8
Date
solved
:
Thursday, October 02, 2025 at 10:38:05 AM
CAS
classification
:
[_quadrature]
ode:=diff(w(t),t) = 3*w(t)^3-12*w(t)^2; dsolve(ode,w(t), singsol=all);
ode=D[w[t],t]==3*w[t]^3-12*w[t]^2; ic={}; DSolve[{ode,ic},w[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") w = Function("w") ode = Eq(-3*w(t)**3 + 12*w(t)**2 + Derivative(w(t), t),0) ics = {} dsolve(ode,func=w(t),ics=ics)