[_exact, _rational, [_Abel, `2nd type`, `class B`]]
Book solution method
Exact equation
Mathematica ✓
cpu = 0.0122077 (sec), leaf count = 71
Maple ✓
cpu = 0.013 (sec), leaf count = 24
DSolve[x*(3 - 2*x^2*y[x])*y'[x] == 4*x - 3*y[x] + 3*x^2*y[x]^2,y[x],x]
Mathematica raw output
{{y[x] -> -(-3*x + Sqrt[x^2*(9 - 8*x^3 + 4*x*C[1])])/(2*x^3)}, {y[x] -> (3*x + S
qrt[x^2*(9 - 8*x^3 + 4*x*C[1])])/(2*x^3)}}
Maple raw input
dsolve(x*(3-2*x^2*y(x))*diff(y(x),x) = 4*x-3*y(x)+3*x^2*y(x)^2, y(x),'implicit')
Maple raw output
-x^3*y(x)^2-2*x^2+3*x*y(x)+_C1 = 0