Internal
problem
ID
[5026]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
15
Problem
number
:
428
Date
solved
:
Sunday, March 30, 2025 at 06:30:34 AM
CAS
classification
:
[_Bernoulli]
ode:=y(x)*diff(y(x),x) = csc(x)^2-y(x)^2*cot(x); dsolve(ode,y(x), singsol=all);
ode=y[x] D[y[x],x]==Csc[x]^2- y[x]^2 Cot[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)**2/tan(x) + y(x)*Derivative(y(x), x) - 1/sin(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)