Internal
problem
ID
[24515]
Book
:
A
short
course
in
Differential
Equations.
Earl
D.
Rainville.
Second
edition.
1958.
Macmillan
Publisher,
NY.
CAT
58-5010
Section
:
Chapter
4.
Additional
topics
on
equations
of
first
order
and
first
degree.
Exercises
at
page
77
Problem
number
:
22
Date
solved
:
Sunday, October 12, 2025 at 05:55:32 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x) = tan(y(x))*cot(x)-sec(y(x))*cos(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Tan[y[x]]*Cot[x]-Sec[ y[x]]*Cos[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(cos(x)*sec(y(x)) - tan(y(x))*cot(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)