Cutting Tool
Source:
April 19, 2006
trigonometryalgebrapolynomialPythagorean Theoremgeometrytrig identitiesLaw of Cosines
Problem Statement
A machine-shop cutting tool has the shape of a notched circle, as shown. The radius of the circle is cm, the length of is 6 cm, and that of is 2 cm. The angle is a right angle. Find the square of the distance (in centimeters) from to the center of the circle.
[asy]
size(150); defaultpen(linewidth(0.65)+fontsize(11));
real r=10;
pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r),C;
path P=circle(O,r);
C=intersectionpoint(B--(B.x+r,B.y),P);
draw(Arc(O, r, 45, 360-17.0312));
draw(A--B--C);dot(A); dot(B); dot(C);
label("",A,NE);
label("",B,SW);
label("",C,SE);
[/asy]