I repeatedly get a response similar to the following:
In[13]:= Clear[Derivative]; gensol =
DSolve[y'[x] == (2 Sqrt[y[x]] - 2 y[x])/x, y[x], x]
During evaluation of In[13]:= Solve::ifun: Inverse functions are being used by Solve, so some solutions may not be found; use Reduce for complete solution information. >>
Out[13]= {{y[x] -> (E^(C[1]/2) + x)^2/x^2}}
How should I follow the instruction "use Reduce for complete solution information"? What command should I type it for complete solution information?