Internal
problem
ID
[4302]
Book
:
An
introduction
to
the
solution
and
applications
of
differential
equations,
J.W.
Searl,
1966
Section
:
Chapter
4,
Ex.
4.2
Problem
number
:
2
Date
solved
:
Tuesday, September 30, 2025 at 07:16:43 AM
CAS
classification
:
[_separable]
ode:=x*(x-1)*diff(y(x),x) = cot(y(x)); dsolve(ode,y(x), singsol=all);
ode=x*(x-1)*D[y[x],x]==Cot[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(x - 1)*Derivative(y(x), x) - 1/tan(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)