Internal
problem
ID
[4718]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
5
Problem
number
:
116
Date
solved
:
Tuesday, March 04, 2025 at 07:10:23 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = sin(x)*(csc(y(x))-cot(y(x))); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Sin[x](Csc[y[x]]-Cot[y[x]]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((1/tan(y(x)) - 1/sin(y(x)))*sin(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)