84.14.14 problem 7.22

Internal problem ID [22171]
Book : Schaums outline series. Differential Equations By Richard Bronson. 1973. McGraw-Hill Inc. ISBN 0-07-008009-7
Section : Chapter 7. Integrating factors. Supplementary problems
Problem number : 7.22
Date solved : Thursday, October 02, 2025 at 08:33:19 PM
CAS classification : [_rational]

\begin{align*} x^{3} y^{2}-y+\left (x^{2} y^{4}-x \right ) y^{\prime }&=0 \end{align*}
Maple. Time used: 0.066 (sec). Leaf size: 25
ode:=x^3*y(x)^2-y(x)+(x^2*y(x)^4-x)*diff(y(x),x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ -\frac {x^{2}}{2}-\frac {1}{y x}-\frac {y^{3}}{3}+c_1 = 0 \]
Mathematica. Time used: 60.09 (sec). Leaf size: 1451
ode=(x^3*y[x]^2-y[x])+(x^2*y[x]^4-x)*D[y[x],x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} \text {Solution too large to show}\end{align*}
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x**3*y(x)**2 + (x**2*y(x)**4 - x)*Derivative(y(x), x) - y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out