Internal
problem
ID
[2973]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
10,
page
41
Problem
number
:
16
Date
solved
:
Sunday, March 30, 2025 at 01:02:48 AM
CAS
classification
:
[_linear]
ode:=cos(theta)*diff(r(theta),theta) = 2+2*r(theta)*sin(theta); dsolve(ode,r(theta), singsol=all);
ode=Cos[\[Theta]]*D[ r[\[Theta]], \[Theta] ]==2+2*r[\[Theta]]*Sin[\[Theta]]; ic={}; DSolve[{ode,ic},r[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * theta = symbols("theta") r = Function("r") ode = Eq(-2*r(theta)*sin(theta) + cos(theta)*Derivative(r(theta), theta) - 2,0) ics = {} dsolve(ode,func=r(theta),ics=ics)