area of region enclosed by 3 circles, pairwise tangent, 90-60-30 triangle
Source: Dutch NMO 2010 p1
September 6, 2019
geometrycircles
Problem Statement
Consider a triangle such that and . Three circles with centers and are pairwise tangent in points on the three sides of the triangle.
Determine the area of the region enclosed by the three circles (the grey area in the figure).[asy]
unitsize(0.2 cm);pair A, B, C;
real[] r;A = (6,0);
B = (6,6*sqrt(3));
C = (0,0);
r[1] = 3*sqrt(3) - 3;
r[2] = 3*sqrt(3) + 3;
r[3] = 9 - 3*sqrt(3);fill(arc(A,r[1],180,90)--arc(B,r[2],270,240)--arc(C,r[3],60,0)--cycle, gray(0.7));
draw(A--B--C--cycle);
draw(Circle(A,r[1]));
draw(Circle(B,r[2]));
draw(Circle(C,r[3]));dot("", A, SE);
dot("", B, NE);
dot("", C, SW);
[/asy]