Internal
problem
ID
[15003]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
8,
Separable
equations.
Exercises
page
72
Problem
number
:
8.1
(iv)
Date
solved
:
Thursday, October 02, 2025 at 09:58:23 AM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = -x(t)^2; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==-x[t]^2; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(x(t)**2 + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)