[_separable]
Book solution method
Separable ODE, Neither variable missing
Mathematica ✓
cpu = 0.0140668 (sec), leaf count = 31
Maple ✓
cpu = 0.008 (sec), leaf count = 24
DSolve[x*(a + b*y[x])*y'[x] == c*y[x],y[x],x]
Mathematica raw output
{{y[x] -> (a*ProductLog[(b*E^(C[1]/a)*x^(c/a))/a])/b}}
Maple raw input
dsolve(x*(a+b*y(x))*diff(y(x),x) = c*y(x), y(x),'implicit')
Maple raw output
ln(x)-1/c*a*ln(y(x))-b/c*y(x)+_C1 = 0