Internal
problem
ID
[7474]
Book
:
Ordinary
differential
equations
and
calculus
of
variations.
Makarets
and
Reshetnyak.
Wold
Scientific.
Singapore.
1995
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.3.
Exact
equations
problems.
page
24
Problem
number
:
1
Date
solved
:
Sunday, March 30, 2025 at 12:09:52 PM
CAS
classification
:
[_exact, _rational]
ode:=x*(2-9*x*y(x)^2)+y(x)*(4*y(x)^2-6*x^3)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=x*(2-9*x*y[x]^2)+y[x]*(4*y[x]^2-6*x^3)*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(-9*x*y(x)**2 + 2) + (-6*x**3 + 4*y(x)**2)*y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out