[Math] Determine the coordinate of the point where line and circle collide/intersect – how to solve for x

circles

I would like to determine the point $C$ in this image:

enter image description here

(assume I have radius value).

After the hours of research and refreshing some memories from school days, I've got:

Please assume…

Point: (xCoordinate, yCoordinate):

A (center): $(x_0,y_0)$

B: $(x_1,y_1) $

Plugging them into equation of circle

$$x^2 + \left(y_0 + \left( \frac{y_1-y_0}{x_1-x_0}\right) (x-x_0)\right)^2 = r^2$$

Now how can I solve for $x$? I would like to have the equation that starts with "$x=$".

Thanks a bunch in advance.

Best Answer

Because the point $C=(x,y)$ is lies on a line through $(x_0,y_0)$ and $(x_1,y_1)$, it is of the form $$(x,y)=(x_0+t(x_1-x_0),y_0+t(y_1-y_0))$$ for some real number $t$. In order for $C$ to lie on the circle, we must have that $$(t(x_1-x_0))^2+(t(y_1-y_0))^2=r^2,$$ and hence $$t=\frac{r}{\sqrt{(x_1-x_0)^2+(y_1-y_0)^2}}.$$ Thus, the $x$-coordinate of $C$ is $$x=x_0+\frac{r(x_1-x_0)}{\sqrt{(x_1-x_0)^2+(y_1-y_0)^2}}.$$