MathDB
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 AA and BB, both with radius 11, touch each other externally. Four circles P,Q,RP, Q, R and SS, all four with the same radius rr, lie such that PP externally touches on A,B,QA, B, Q and SS, QQ externally touches on P,BP, B and RR, RR externally touches on A,B,QA, B, Q and SS, SS externally touches on P,AP, A and RR. Calculate the length of r.r.
[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("AA", A); label("BB", B); label("PP", P); label("QQ", Q); label("RR", R); label("SS", S); [/asy]