Archives
All posts for the month February, 2021
Find the Center of a Circle Using Only a Pencil and Straight Edge
I bought a wood lathe recently, and the first time I tried to center some wood, I went through the painful process of remembering how to find the center of a circle. This, despite having had three years of mechanical drawing classes.
Starting with a pencil and straight edge:
- Mark a line on the straight edge that’s a little more than 3/4 of the diameter (height) of the circle. It doesn’t have to be exact.
- Make a mark (M) at the top of the circle. The location of the mark need not be exact.
- Align the straight edge so that the corner is on mark M, and the line on the straight edge touches the right edge of the circle. Draw a line (A) from somewhere above the center of the circle out to it’s edge.
- Repeat on the left side, drawing line B.
- From where line B ends, line up the straight edge so that its corner sits on the end of line B, and its line touches the lower-right-hand edge of the circle. Draw line C along the straight edge, crossing the vertical center line.
- Repeat from the end of line A to the lower-left-hand edge of the circle, and draw line D
- At this point, lines C and D should form an “X” near the bottom of the circle.
- Draw a vertical center line (E) by aligning the straight edge with mark M and the intersection of lines C and D. Start the line above the center, and go all the way to the bottom edge.
- At this point, line E passes through the center vertically, but we need to find the horizontal center.
- From where line E touches the bottom of the circle, align the straight edge so that it crosses line A, and the line on the straight edge touches the upper-right-hand edge of the circle. Draw line F, crossing line A.
- Repeat this on the left side, crossing line B, and drawing line G.
- At this point, there should be an “X” on the left formed by lines B and G, and one on the right formed by lines A and F.
- Align the straight edge across the intersections of the left (B,G) and right (A,F) intersections, and draw the horizontal center line H.
The center of the circle is at the intersection of the vertical (E) and horizontal (H) center lines.
How This Works
Let’s call the distance from the corner of the straight edge to its mark S.
Let’s call the points where the horizontal center line meets the circle’s edges H1 (left) and H2 (right), and the point where the vertical center line meets the bottom V.
If we start at M and walk clockwise around the circle, we would pass through the points as follows: M (start) -> H2 -> V -> H1 –> M (back to start).
The circle’s radius, R, is 1/2 the distance of M -> V or H1 -> H2. The distance from M -> H2 would be SQUARE_ROOT( R^2 + R^2), and the same is true for H2 -> V, V -> H1, and H1 -> M.
If we assume that the radius R is “1 unit” (the actual length is irrelevant), then SQUARE_ROOT(1^2 + 1^2) = SQUARE_ROOT(2), or about 1.41.
If the radius R = “1 unit” then the diameter = 2 * R = “2 units”.
By selecting S such that S is 3/4 of the diameter, 3/4 * 2 = 1.5. Since S>1.41, and we make two consecutive S-length marks around the circle, we know for a fact that 2*S > (M -> H2 -> V).
By doing this twice, once clockwise, and once counterclockwise, we get lines C and D. We can call its intersection point T.
It’s easy to prove that this forms two congruent triangles: (M->A-> T) and (M->B->T). If the line M -> T is the base of both, then because they are congruent, the height of both are the same, which means that M -> T perfectly bisects (A -> B).
Since this line (M -> T) also bisects the equilateral triangle M -> A -> B which is inscribed within the circle, that line must pass through the center of the circle as well.
Carrying M ->T out to the edge of the circle gives us point V.
By drawing a line from V of length S to the edge, we get line F, which crosses line A. We can call this intersection point U.
If we knew where the center of the circle (point O) was located, we could make the congruent triangle argument, that M -> U -> O is congruent to V -> U -> O, and just as with the vertical center line bisecting M->A->B, U -> O would perfectly bisect the larger equilateral triangle M -> U -> V.
On the other side, we draw line G of length S, which crosses line B at point W. Same congruency argument: M -> W -> O is congruent to V -> W -> O, and W -> O bisects equilateral triangle M -> W -> V.
Because M -> U = V -> U we know that M -> U -> V is equilateral, and the same for M -> W -> V. Further, because of the congruency argument, we know that M -> U = M –> W and V -> U = V -> W, and therefore (M -> U -> V) is congruent to (M -> W -> V).
If line U-> O bisects triangle M->U->V, then it must intersect M->V exactly at its center. Same for W->O and triangle M->W->V.
Therefore, W->U passes through the center of both triangles at point O, where W->U intersects M->V.
And therefore, point O must be at the center of the circle, because V->O = M->O, and we know that M->V passes through the center of the circle.
Note that this trick ONLY works if the the mark on the ruler (distance S) is > 1.41 times the radius.