Internal
problem
ID
[14573]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.2
(Separable
equations).
Exercises
page
47
Problem
number
:
3
Date
solved
:
Thursday, October 02, 2025 at 09:42:28 AM
CAS
classification
:
[_separable]
ode:=2*r*(s(r)^2+1)+(r^4+1)*diff(s(r),r) = 0; dsolve(ode,s(r), singsol=all);
ode=2*r*(s[r]^2+1)+(r^4+1)*D[ s[r],r]==0; ic={}; DSolve[{ode,ic},s[r],r,IncludeSingularSolutions->True]
from sympy import * r = symbols("r") s = Function("s") ode = Eq(2*r*(s(r)**2 + 1) + (r**4 + 1)*Derivative(s(r), r),0) ics = {} dsolve(ode,func=s(r),ics=ics)