[[_homogeneous, `class A`], _dAlembert]
Book solution method
No Missing Variables ODE, Solve for
Mathematica ✓
cpu = 0.0173141 (sec), leaf count = 46
Maple ✓
cpu = 0.026 (sec), leaf count = 40
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]