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