4.12.13 xy(x)(a+by(x))=cy(x)

ODE
xy(x)(a+by(x))=cy(x) ODE Classification

[_separable]

Book solution method
Separable ODE, Neither variable missing

Mathematica
cpu = 0.0140668 (sec), leaf count = 31

{{y(x)aW(bec1axcaa)b}}

Maple
cpu = 0.008 (sec), leaf count = 24

{ln(x)aln(y(x))cby(x)c+_C1=0} Mathematica raw input

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