Internal
problem
ID
[14372]
Book
:
A
First
Course
in
Differential
Equations
by
J.
David
Logan.
Third
Edition.
Springer-Verlag,
NY.
2015.
Section
:
Chapter
1,
First
order
differential
equations.
Section
1.4.1.
Integrating
factors.
Exercises
page
41
Problem
number
:
3(e)
Date
solved
:
Thursday, October 02, 2025 at 09:34:12 AM
CAS
classification
:
[_separable]
ode:=cos(theta)*diff(v(theta),theta)+v(theta) = 3; dsolve(ode,v(theta), singsol=all);
ode=Cos[theta]*D[v[theta],theta]+v[theta]==3; ic={}; DSolve[{ode,ic},v[theta],theta,IncludeSingularSolutions->True]
from sympy import * theta = symbols("theta") v = Function("v") ode = Eq(v(theta) + cos(theta)*Derivative(v(theta), theta) - 3,0) ics = {} dsolve(ode,func=v(theta),ics=ics)