6 tangent circles, 2 of radii 1 and 4 of radii r
Source: Dutch NMO 2004 p2
September 21, 2019
tangent circlesradiusgeometry
Problem Statement
Two circles and , both with radius , touch each other externally.
Four circles and , all four with the same radius , lie such that
externally touches on and ,
externally touches on and ,
externally touches on and ,
externally touches on and .
Calculate the length of [asy]
unitsize(0.3 cm);pair A, B, P, Q, R, S;
real r = (3 + sqrt(17))/2;A = (-1,0);
B = (1,0);
P = intersectionpoint(arc(A,r + 1,0,180), arc(B,r + 1,0,180));
R = -P;
Q = (r + 2,0);
S = (-r - 2,0);draw(Circle(A,1));
draw(Circle(B,1));
draw(Circle(P,r));
draw(Circle(Q,r));
draw(Circle(R,r));
draw(Circle(S,r));label("", A);
label("", B);
label("", P);
label("", Q);
label("", R);
label("", S);
[/asy]