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