[_quadrature]
Book solution method
No Missing Variables ODE, Solve for
Mathematica ✓
cpu = 0.0040427 (sec), leaf count = 21
Maple ✓
cpu = 0.007 (sec), leaf count = 16
DSolve[-y[x]^2 + (1 - x)*y[x]*y'[x] + x*y'[x]^2 == 0,y[x],x]
Mathematica raw output
{{y[x] -> E^x*C[1]}, {y[x] -> C[1]/x}}
Maple raw input
dsolve(x*diff(y(x),x)^2+y(x)*(1-x)*diff(y(x),x)-y(x)^2 = 0, y(x),'implicit')
Maple raw output
y(x) = _C1/x, y(x) = _C1*exp(x)