I’m trying to find the y of a point in a circumference, given only the x of that point and the radius (r) of the circumference, which is at (0,0)?
Here’s an example of what I have:

I don’t have any more information (e.g. an angle) aside from x and r and need to find the y.
>Solution :
The way to tackle this question is to use the equation of a circle. The equation of a circle is x^2 + y^2 = r^2. Since you are given r and x, to find y you can simply rearrange this equation. So y = + or – sqrt(x^2+r^2). Now to find whether to use the positive or negative y, you can simply look at the picture. Since y is above the x-axis, it must be positive or y = sqrt(x^2+r^2). Let me know if you have any other questions!