4.11.25 \((x (-y(x))+3 x+2) y'(x)+y(x)=0\)

ODE
\[ (x (-y(x))+3 x+2) y'(x)+y(x)=0 \] ODE Classification

[_rational, [_1st_order, `_with_symmetry_[F(x)*G(y),0]`], [_Abel, `2nd type`, `class B`]]

Book solution method
Change of Variable, new independent variable

Mathematica
cpu = 0.278511 (sec), leaf count = 29

\[\text {Solve}\left [x=\frac {2 y(x)^2+4 y(x)+c_1 e^{y(x)}+4}{y(x)^3},y(x)\right ]\]

Maple
cpu = 0.088 (sec), leaf count = 29

\[\left [\textit {\_C1} +\frac {{\mathrm e}^{y \left (x \right )}}{x y \left (x \right )^{3}-2 y \left (x \right )^{2}-4 y \left (x \right )-4} = 0\right ]\] Mathematica raw input

DSolve[y[x] + (2 + 3*x - x*y[x])*y'[x] == 0,y[x],x]

Mathematica raw output

Solve[x == (4 + E^y[x]*C[1] + 4*y[x] + 2*y[x]^2)/y[x]^3, y[x]]

Maple raw input

dsolve((2+3*x-x*y(x))*diff(y(x),x)+y(x) = 0, y(x))

Maple raw output

[_C1+exp(y(x))/(x*y(x)^3-2*y(x)^2-4*y(x)-4) = 0]