Internal
problem
ID
[14575]
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
:
5
Date
solved
:
Thursday, October 02, 2025 at 09:42:32 AM
CAS
classification
:
[_separable]
ode:=tan(theta(r))+2*r*diff(theta(r),r) = 0; dsolve(ode,theta(r), singsol=all);
ode=Tan[theta[r]]+2*r*D[ theta[r],r]==0; ic={}; DSolve[{ode,ic},theta[r],r,IncludeSingularSolutions->True]
from sympy import * r = symbols("r") theta = Function("theta") ode = Eq(2*r*Derivative(theta(r), r) + tan(theta(r)),0) ics = {} dsolve(ode,func=theta(r),ics=ics)