Internal
problem
ID
[21516]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
I.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
5.
Integrating
factors.
Page
72.
Problem
number
:
5-3
Date
solved
:
Thursday, October 02, 2025 at 07:46:34 PM
CAS
classification
:
[_linear]
ode:=diff(y(theta),theta)+tan(theta)*y(theta) = cos(theta); dsolve(ode,y(theta), singsol=all);
ode=D[y[\[Theta]],\[Theta]]+Tan[\[Theta]]*y[\[Theta]]==Cos[\[Theta]]; ic={}; DSolve[{ode,ic},y[\[Theta]],\[Theta],IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t)*tan(t) - cos(t) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)