Internal
problem
ID
[6649]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
6.
Equations
of
first
order
and
first
degree
(Linear
equations).
Supplemetary
problems.
Page
39
Problem
number
:
19
(j)
Date
solved
:
Sunday, March 30, 2025 at 11:13:34 AM
CAS
classification
:
[_linear]
ode:=diff(r(theta),theta)+2*r(theta)*cos(theta)+sin(2*theta) = 0; dsolve(ode,r(theta), singsol=all);
ode=D[r[t],t]+(2*r[t]*Cos[t]+Sin[2*t])==0; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * theta = symbols("theta") r = Function("r") ode = Eq(2*r(theta)*cos(theta) + sin(2*theta) + Derivative(r(theta), theta),0) ics = {} dsolve(ode,func=r(theta),ics=ics)