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