Internal
problem
ID
[18177]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
2.
First
order
equations.
Miscellaneous
Problems
for
Chapter
2.
Problems
at
page
99
Problem
number
:
50
Date
solved
:
Monday, March 31, 2025 at 05:21:53 PM
CAS
classification
:
[_linear]
ode:=diff(x(y),y)+x(y)*cot(y) = sec(y); dsolve(ode,x(y), singsol=all);
ode=D[x[y],y] + x[y]*Cot[y] == Sec[y]; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(x(y)/tan(y) + Derivative(x(y), y) - 1/cos(y),0) ics = {} dsolve(ode,func=x(y),ics=ics)