I came across this diff eq that I tried solving using methods like u=y/x substitution but couldn't reduce it to anything meaningful. I am only familiar with solving first-order linear equations therefore could anyone suggest a starting point to approach this equation? Or perhaps known substitutions that I could use in order to reduce to a simpler form? Thanks.
$$\frac{y^2}{1-y^2}(\frac{x}{y} - y')^2 = 4$$
initial conditions y(0)=1
(mb for asking this question previously without any context)
Edit: First I simplified the equation:
$$\frac{x - yy'}{\sqrt{1-y^2}} = 2 ....(i)$$
I was able to solve the equation using the substitution $$u^2 = 1-y^2$$ with which I found
$$\frac{dy}{dx}= \frac{-u}{\sqrt{1-u^2}}\frac{du}{dx}$$
After substituting the relevant values of y and y' into eq(i),
$$\frac{x}{u}+u' = 2 ......(ii)$$
here is I realized that $$u=x .....(iii)$$ is a solution and therefore,
$$y=\sqrt{1-x^2}$$
would be the final solution, which checks out, but there is obviously a lack of rigour between eq(ii) and eq(iii), how can this step be reasoned mathematically?