Internal
problem
ID
[25085]
Book
:
Ordinary
Differential
Equations.
By
William
Adkins
and
Mark
G
Davidson.
Springer.
NY.
2010.
ISBN
978-1-4614-3617-1
Section
:
Chapter
1.
First
order
differential
equations.
Exercises
at
page
41
Problem
number
:
21
Date
solved
:
Thursday, October 02, 2025 at 11:49:41 PM
CAS
classification
:
[_separable]
ode:=y(t)+1+(y(t)-1)*(t^2+1)*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=y[t]+1+(y[t]-1)*(1+t^2)*D[y[t],{t,1}] ==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((t**2 + 1)*(y(t) - 1)*Derivative(y(t), t) + y(t) + 1,0) ics = {} dsolve(ode,func=y(t),ics=ics)