Center of Circle given Apothem and 2 points

179 Views Asked by At

enter image description here

I am given 2 end points of the chord $AB$ as well as the apothem, the distance from the center point of the circle to the chord. I can easily find the radius circle and midpoint of the chord I'm just unsure where to go from there. My end goal is to get the coordinate pair for the center of the circle.

1

There are 1 best solutions below

0
On BEST ANSWER

The center of the line segment is $C =(\frac{x_1+x_2}{2}, \frac{y_1+y_2}{2}) $.

Since the line to the center is perpendicular to the line segment, which has direction $(x_2-x_1, y_2-y_1) = (dx, dy) $, its direction is $D = (-dy, dx)$ (or $(dy, -dx)$).

Therefore, go from $C$ in that direction by the specified length. If that length is $L$, the center is at $C + L\frac{D}{|D|} $.

(Added later)

Note that, depending on which version of $D$ is used, you get two possible centers, one on each side of the line.