Internal
problem
ID
[14574]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.2
(Separable
equations).
Exercises
page
47
Problem
number
:
4
Date
solved
:
Thursday, October 02, 2025 at 09:42:30 AM
CAS
classification
:
[_separable]
ode:=csc(y(x))+sec(x)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Csc[y[x]]+Sec[x]*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x)/cos(x) + 1/sin(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)