rectangle and tangent wanted, starting with 3 tangent circles in pairs
Source: Dutch NMO 1996 p4
January 29, 2020
geometryrectangletangent circles
Problem Statement
A line intersects the segment perpendicular to . Three circles are drawn successively with and as the diameter. The largest circle intersects in . The segments and still intersect the two smaller circles in and .
a. Prove that quadrilateral is a rectangle.
b. Prove that the line through and touches the circles with diameters and in and .[asy]
unitsize (2.5 cm);pair A, B, C, D, E, F, O;O = (0,0);
A = (-1,0);
B = (1,0);
C = (-0.3,0);
D = intersectionpoint(C--(C + (0,1)), Circle(O,1));
E = (C + reflect(A,D)*(C))/2;
F = (C + reflect(B,D)*(C))/2;draw(Circle(O,1));
draw(Circle((A + C)/2, abs(A - C)/2));
draw(Circle((B + C)/2, abs(B - C)/2));
draw(A--B);
draw(interp(C,D,-0.4)--D);
draw(A--D--B);dot("", A, W);
dot("", B, dir(0));
dot("", C, SE);
dot("", D, NW);
dot("", E, SE);
dot("", F, SW);
[/asy]