[[_homogeneous, `class G`], _rational, _Bernoulli]
Book solution method
The Bernoulli ODE
Mathematica ✓
cpu = 0.00776119 (sec), leaf count = 47
Maple ✓
cpu = 0.008 (sec), leaf count = 19
DSolve[1 + 2*x*y[x]^2 + 3*x^2*y[x]*y'[x] == 0,y[x],x]
Mathematica raw output
{{y[x] -> -Sqrt[-2/x + C[1]/x^(4/3)]}, {y[x] -> Sqrt[-2/x + C[1]/x^(4/3)]}}
Maple raw input
dsolve(3*x^2*y(x)*diff(y(x),x)+1+2*x*y(x)^2 = 0, y(x),'implicit')
Maple raw output
y(x)^2+2/x-1/x^(4/3)*_C1 = 0