Internal
problem
ID
[5057]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
16
Problem
number
:
459
Date
solved
:
Sunday, March 30, 2025 at 06:33:26 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