Internal
problem
ID
[3020]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
12,
page
46
Problem
number
:
17
Date
solved
:
Tuesday, March 04, 2025 at 03:44:33 PM
CAS
classification
:
[_separable]
ode:=diff(r(theta),theta) = r(theta)*cot(theta); dsolve(ode,r(theta), singsol=all);
ode=D[ r[\[Theta]], \[Theta] ]==r[\[Theta]]*Cot[\[Theta]]; ic={}; DSolve[{ode,ic},r[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * theta = symbols("theta") r = Function("r") ode = Eq(-r(theta)/tan(theta) + Derivative(r(theta), theta),0) ics = {} dsolve(ode,func=r(theta),ics=ics)