Bunch of Lines and Arcs in a Circle
Source:
June 8, 2009
LaTeXanalytic geometryPythagorean Theoremgeometrypower of a point
Problem Statement
In circle , the midpoint of radius is ; at , . The semi-circle with as diameter intersects in . Line intersects circle in , and line intersects circle in . Line is drawn. Then, if the radius of circle is , is:
[asy]defaultpen(linewidth(.8pt));
unitsize(2.5cm);real m = 0;
real b = 0;pair O = origin;
pair X = (-1,0);
pair Y = (1,0);
pair Q = midpoint(O--X);
pair A = (Q.x, -1*sqrt(3)/2);
pair B = (Q.x, -1*A.y);
pair M = (Q.x + sqrt(3)/2,0);m = (B.y - M.y)/(B.x - M.x);
b = (B.y - m*B.x);pair D = intersectionpoint(Circle(O,1),M--(1.5,1.5*m + b));m = (A.y - M.y)/(A.x - M.x);
b = (A.y - m*A.x);pair C = intersectionpoint(Circle(O,1),M--(1.5,1.5*m + b));draw(Circle(O,1));
draw(Arc(Q,sqrt(3)/2,-90,90));
draw(A--B);
draw(X--Y);
draw(B--D);
draw(A--C);
draw(A--D);
dot(O);dot(M);label("",B,NW);
label("",C,NE);
label("",Y,E);
label("",D,SE);
label("",A,SW);
label("",X,W);
label("",Q,SW);
label("",O,SW);
label("",M,NE+2N);[/asy]