Internal
problem
ID
[23177]
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
:
15
Date
solved
:
Thursday, October 02, 2025 at 09:23:59 PM
CAS
classification
:
[_quadrature]
ode:=sin(theta)^2*diff(r(theta),theta) = -b*cos(theta); dsolve(ode,r(theta), singsol=all);
ode=Sin[\[Theta]]^2 * D[r[\[Theta]],\[Theta]]==-b*Cos[\[Theta]]; ic={}; DSolve[{ode,ic},r[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * t = symbols("t") b = symbols("b") r = Function("r") ode = Eq(b*cos(t) + sin(t)**2*Derivative(r(t), t),0) ics = {} dsolve(ode,func=r(t),ics=ics)