2006 AMC 10 #24
Source:
August 20, 2011
geometryrectangle
Problem Statement
Circles with centers and have radii 2 and 4, respectively, and are externally tangent. Points and are on the circle centered at , and points and are on the circle centered at , such that and are common external tangents to the circles. What is the area of hexagon ?
[asy]
size(250);defaultpen(linewidth(0.8));
pair X=(-6,0), O=origin, P=(6,0), B=tangent(X, O, 2, 1), A=tangent(X, O, 2, 2), C=tangent(X, P, 4, 1), D=tangent(X, P, 4, 2);
pair top=X+15*dir(X--A), bottom=X+15*dir(X--B);
draw(Circle(O, 2)^^Circle(P, 4));
draw(bottom--X--top);
draw(A--O--B^^O--P^^D--P--C);
pair point=X;
label("", midpoint(O--A), dir(point--midpoint(O--A)));
label("", midpoint(P--D), dir(point--midpoint(P--D)));
label("", O, SE);
label("", P, dir(point--P));
pair point=O;
label("", A, dir(point--A));
label("", B, dir(point--B));
pair point=P;
label("", C, dir(point--C));
label("", D, dir(point--D));
fill((-3,7)--(-3,-7)--(-7,-7)--(-7,7)--cycle, white);[/asy]