Internal
problem
ID
[18602]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
2.
First
order
differential
equations.
Section
2.1
(Separable
equations).
Problems
at
page
44
Problem
number
:
16
Date
solved
:
Thursday, October 02, 2025 at 03:15:48 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(r(theta),theta) = r(theta)^2/theta; ic:=[r(1) = 2]; dsolve([ode,op(ic)],r(theta), singsol=all);
ode=D[r[\[Theta]],\[Theta] ]==r[\[Theta]]^2/\[Theta]; ic={r[1]==2}; DSolve[{ode,ic},r[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * theta = symbols("theta") r = Function("r") ode = Eq(Derivative(r(theta), theta) - r(theta)**2/theta,0) ics = {r(1): 2} dsolve(ode,func=r(theta),ics=ics)