Internal
problem
ID
[13208]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.1
(Exact
differential
equations
and
integrating
factors).
Exercises
page
37
Problem
number
:
9
Date
solved
:
Monday, March 31, 2025 at 07:37:49 AM
CAS
classification
:
[_separable]
ode:=(2*s(t)-1)/t*diff(s(t),t)+(s(t)-s(t)^2)/t^2 = 0; dsolve(ode,s(t), singsol=all);
ode=(2*s[t]-1)/t*D[s[t],t]+(s[t]-s[t]^2)/t^2==0; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq((2*s(t) - 1)*Derivative(s(t), t)/t + (-s(t)**2 + s(t))/t**2,0) ics = {} dsolve(ode,func=s(t),ics=ics)