rectangle wanted, 4 circles inside a circle given
Source: Dutch NMO 2003 p4
September 21, 2019
geometryrectanglecircles
Problem Statement
In a circle with center , two chords and intersect perpendicularly.
The circle of diameter intersects the circle of diameter besides also in point . The circle of diameter intersects the circle with diameter besides also in point . The circle of diameter intersects the circle of diameter besides also in point . The circle of diameter intersects the circle of diameter besides also in point . Prove that quadrilateral is a rectangle.[asy]
unitsize (3 cm);pair A, B, C, D, M, P, Q, R, S;M = (0,0);
A = dir(170);
C = dir(10);
B = dir(120);
D = dir(240);draw(Circle(M,1));
draw(A--C);
draw(B--D);
draw(Circle(A/2,1/2));
draw(Circle(B/2,1/2));
draw(Circle(C/2,1/2));
draw(Circle(D/2,1/2));
P = (A + B)/2;
Q = (B + C)/2;
R = (C + D)/2;
S = (D + A)/2;dot("", A, A);
dot("", B, B);
dot("", C, C);
dot("", D, D);
dot("", M, E);
dot("", P, SE);
dot("", Q, SE);
dot("", R, NE);
dot("", S, NE);
[/asy]