4.19.46 y(x)y(x)2=a2x

ODE
y(x)y(x)2=a2x ODE Classification

[[_homogeneous, `class A`], _dAlembert]

Book solution method
No Missing Variables ODE, Solve for y

Mathematica
cpu = 0.0173141 (sec), leaf count = 46

{{y(x)(3c12ax3/2)2/3},{y(x)(ax3/2+3c12)2/3}}

Maple
cpu = 0.026 (sec), leaf count = 40

{[x(_T)=_T2_C1(_T3a2)23,y(_T)=a2_C1(_T3a2)23]} Mathematica raw input

DSolve[y[x]*y'[x]^2 == a^2*x,y[x],x]

Mathematica raw output

{{y[x] -> (-(a*x^(3/2)) + (3*C[1])/2)^(2/3)}, {y[x] -> (a*x^(3/2) + (3*C[1])/2)^
(2/3)}}

Maple raw input

dsolve(y(x)*diff(y(x),x)^2 = a^2*x, y(x),'implicit')

Maple raw output

[x(_T) = 1/(_T^3-a^2)^(2/3)*_T^2*_C1, y(_T) = a^2/(_T^3-a^2)^(2/3)*_C1]