Internal
problem
ID
[15905]
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.2.
page
33
Problem
number
:
21
Date
solved
:
Thursday, October 02, 2025 at 10:29:39 AM
CAS
classification
:
[_separable]
ode:=diff(y(t),t) = exp(t)*y(t)/(1+y(t)^2); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==Exp[t]*y[t]/(1+y[t]^2); ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), t) - y(t)*exp(t)/(y(t)**2 + 1),0) ics = {} dsolve(ode,func=y(t),ics=ics)