Internal
problem
ID
[2811]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
4.
Qualitative
theory
of
differential
equations.
Section
4.2
(Stability
of
linear
systems).
Page
383
Problem
number
:
13
Date
solved
:
Tuesday, March 04, 2025 at 02:43:02 PM
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)