Internal
problem
ID
[10540]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
539
Date
solved
:
Sunday, March 30, 2025 at 05:49:08 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)^3*sin(x)-(sin(x)*y(x)-cos(x)^2)*diff(y(x),x)^2-(y(x)*cos(x)^2+sin(x))*diff(y(x),x)+sin(x)*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=Sin[x]*y[x] - (Sin[x] + Cos[x]^2*y[x])*D[y[x],x] - (-Cos[x]^2 + Sin[x]*y[x])*D[y[x],x]^2 + Sin[x]*D[y[x],x]^3==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-y(x)*sin(x) + cos(x)**2)*Derivative(y(x), x)**2 - (y(x)*cos(x)**2 + sin(x))*Derivative(y(x), x) + y(x)*sin(x) + sin(x)*Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out