Internal
problem
ID
[13026]
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.4.1.
Integrating
factors.
Exercises
page
41
Problem
number
:
8
Date
solved
:
Monday, March 31, 2025 at 07:31:20 AM
CAS
classification
:
[[_homogeneous, `class C`], _Riccati]
ode:=diff(x(t),t) = (t+x(t))^2; dsolve(ode,x(t), singsol=all);
ode=D[x[t],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(-(t + x(t))**2 + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)