Internal
problem
ID
[5079]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
462
Date
solved
:
Tuesday, September 30, 2025 at 11:33:27 AM
CAS
classification
:
[[_Abel, `2nd type`, `class A`]]
ode:=(y(x)-cot(x)*csc(x))*diff(y(x),x)+csc(x)*(1+y(x)*cos(x))*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=(y[x]-Cot[x]*Csc[x])*D[y[x],x]+Csc[x]*(1+y[x]*Cos[x])*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((y(x)*cos(x) + 1)*y(x)/sin(x) + (y(x) - 1/(sin(x)*tan(x)))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out