1994 AJHSME Problem 19
Source:
July 9, 2011
geometry
Problem Statement
Around the outside of a by square, construct four semicircles (as shown in the figure) with the four sides of the square as their diameters. Another square, , has its sides parallel to the corresponding sides of the original square, and each side of is tangent to one of the semicircles. The area of the square is[asy]
pair A,B,C,D;
A = origin; B = (4,0); C = (4,4); D = (0,4);
draw(A--B--C--D--cycle);
draw(arc((2,1),(1,1),(3,1),CCW)--arc((3,2),(3,1),(3,3),CCW)--arc((2,3),(3,3),(1,3),CCW)--arc((1,2),(1,3),(1,1),CCW));
draw((1,1)--(3,1)--(3,3)--(1,3)--cycle);
dot(A); dot(B); dot(C); dot(D); dot((1,1)); dot((3,1)); dot((1,3)); dot((3,3));
label("",A,SW);
label("",B,SE);
label("",C,NE);
label("",D,NW);
[/asy]