I am trying to find the second intersection point of a line on a circle. I have draw a picture for reference.
Given the drawing, I have a known radius circle. We can assume the circle is located at (0, 0). Angle t is also known (for this example we can say it is 20 degrees). Given the above, (X, Y) is also known (radius, 0). With the given information, I need to find (X', Y'). Any help (or a point in the right direction) would be greatly appreciated.
Also of the research I have done has yielded results that are directed at find where a line intersects a circle (both points) and I am not able to extrapolate what I need from the examples.
It is also worth mentioning that I am a software developer, not a mathematician. If I have left something out or make incorrect assumption or notations, I apologize and please let me know.
Connecting $X',Y'$ to the center creates an iscoceles triangle.
The angle at $(X',Y')$ is also $t$
Which makes the angle at the center $180-2t$
In Trig we like to orient ourselves such that angles into QIV are negative.
We should call the angle at the center $2t-180$
$(X',Y') = r\cos (2t-180), r\sin (2t-180)$
And we have an identities that say $\cos (180 + x) = \cos -x,\sin (180 + x) = \sin -x$
$(X',Y') = r\cos (-2t), r\sin (-2t)$