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