MathDB
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 ll intersects the segment ABAB perpendicular to CC. Three circles are drawn successively with AB,ACAB, AC and BCBC as the diameter. The largest circle intersects ll in DD. The segments DADA and DBDB still intersect the two smaller circles in EE and FF. a. Prove that quadrilateral CFDECFDE is a rectangle. b. Prove that the line through EE and FF touches the circles with diameters ACAC and BCBC in EE and FF.
[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("AA", A, W); dot("BB", B, dir(0)); dot("CC", C, SE); dot("DD", D, NW); dot("EE", E, SE); dot("FF", F, SW); [/asy]