Math Prize 2015 Problem 20
Source:
September 23, 2015
Problem Statement
In the diagram below, the circle with center is congruent to and tangent to the circle with center . A third circle is tangent to the circle with center at point and passes through point . Points , , and are collinear. The line segment intersects the circles at the indicated points. Suppose that and . Find .
[asy]
unitsize(5);
pair A = (-9 sqrt(3), 0);
pair B = (9 sqrt(3), 0);
pair C = (-18 sqrt(3), 0);
pair D = (-4 sqrt(3) / 3, 10 sqrt(6) / 3);
pair E = (2 sqrt(3), 4 sqrt(6));
pair F = (7 sqrt(3), 5 sqrt(6));
pair G = (12 sqrt(3), 6 sqrt(6));
real r = 9sqrt(3);
draw(circle(A, r));
draw(circle(B, r));
draw(circle((B + C) / 2, 3r / 2));
draw(C -- D);
draw("", E -- D);
draw(E -- F);
draw("", F -- G);
dot(A);
dot(B);
label("", A, plain.E);
label("", B, plain.E);
label("", C, W);
label("", D, dir(160));
label("", E, S);
label("", F, SSW);
label("", G, N);
[/asy]