Internal
problem
ID
[14316]
Book
:
A
First
Course
in
Differential
Equations
by
J.
David
Logan.
Third
Edition.
Springer-Verlag,
NY.
2015.
Section
:
Chapter
1,
First
order
differential
equations.
Section
1.1.3
Geometric.
Exercises
page
15
Problem
number
:
2
Date
solved
:
Thursday, October 02, 2025 at 09:30:38 AM
CAS
classification
:
[[_Riccati, _special]]
ode:=diff(x(t),t) = x(t)^2+t^2; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==x[t]^2+t^2; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t**2 - x(t)**2 + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)
TypeError : bad operand type for unary -: list