Internal
problem
ID
[14337]
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.3.1
Separable
equations.
Exercises
page
26
Problem
number
:
4(e)
Date
solved
:
Thursday, October 02, 2025 at 09:31:49 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(t),t)+y(t)+1/y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]+y[t]+1/y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t) + Derivative(y(t), t) + 1/y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)