Internal
problem
ID
[23172]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
7.
Polar
coordinates
and
vectors.
Exercise
7a
at
page
109
Problem
number
:
10
Date
solved
:
Thursday, October 02, 2025 at 09:23:46 PM
CAS
classification
:
[_separable]
ode:=1/r(theta)*diff(r(theta),theta) = tan(theta); dsolve(ode,r(theta), singsol=all);
ode=1/r[\[Theta]]*D[r[\[Theta]],\[Theta]]==Tan[\[Theta]]; ic={}; DSolve[{ode,ic},r[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(-tan(t) + Derivative(r(t), t)/r(t),0) ics = {} dsolve(ode,func=r(t),ics=ics)