Internal
problem
ID
[5613]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
35
Problem
number
:
1048
Date
solved
:
Sunday, March 30, 2025 at 09:20:10 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)^3+(cos(x)*cot(x)-y(x))*diff(y(x),x)^2-(1+y(x)*cos(x)*cot(x))*diff(y(x),x)+y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=(D[y[x],x])^3 +(Cos[x]*Cot[x]-y[x])*(D[y[x],x])^2-(1+y[x]*Cos[x]*Cot[x])*D[y[x],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)/tan(x) - 1)*Derivative(y(x), x) + (-y(x) + cos(x)/tan(x))*Derivative(y(x), x)**2 + y(x) + Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)