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