Internal
problem
ID
[23175]
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
:
13
Date
solved
:
Saturday, October 04, 2025 at 05:35:55 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=r(theta)*diff(r(theta),theta) = a; ic:=[r(0) = b]; dsolve([ode,op(ic)],r(theta), singsol=all);
ode=r[\[Theta]]*D[r[\[Theta]],\[Theta]]==a; ic={r[0]==b}; DSolve[{ode,ic},r[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * t = symbols("t") a = symbols("a") b = symbols("b") r = Function("r") ode = Eq(-a + r(t)*Derivative(r(t), t),0) ics = {r(0): b} dsolve(ode,func=r(t),ics=ics)