I stumbled upon this differential equation while thinking of a physics problem.
$$\frac{wy'(x)}{y'^2(x)+1}=kx$$
I found two solutions using wolframalpha.
And when I plot it, the result is magically accurate (according to my intuition). So, I know it's right.
My question is, how can I learn to solve this particular differential equation? Is there a procedural approach to arrive at this solution or does solving it mean plugging in the guess and fiddling with the free parameters to arrive at one particular solution?

Note that \begin{align} \frac{w y'}{(y')^2 + 1} &= kx \\ kx (y')^2 - wy' +kx &= 0 \\ y' &= \frac{w\pm \sqrt{w^2 - 4(kx)^2}}{2kx} \end{align} Therefore we just need to integrate both sides to get the answer.