Internal
problem
ID
[5286]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
674
Date
solved
:
Tuesday, September 30, 2025 at 12:07:20 PM
CAS
classification
:
[_exact, _rational]
ode:=x*(3+5*x-12*x*y(x)^2+4*x^2*y(x))*diff(y(x),x)+(3+10*x-8*x*y(x)^2+6*x^2*y(x))*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=x(3+5 x-12 x y[x]^2+4 x^2 y[x])D[y[x],x]+(3+10 x-8 x y[x]^2+6 x^2 y[x])y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(4*x**2*y(x) - 12*x*y(x)**2 + 5*x + 3)*Derivative(y(x), x) + (6*x**2*y(x) - 8*x*y(x)**2 + 10*x + 3)*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out