8
Part of 2005 AMC 10
Problems(2)
Square and inner square
Source:
11/7/2005
Square is inside the square so that each side of can be extended to pass through a vertex of . Square has side length and BE \equal{} 1. What is the area of the inner square ?
[asy]unitsize(4cm);
defaultpen(linewidth(.8pt)+fontsize(10pt));pair D=(0,0), C=(1,0), B=(1,1), A=(0,1);
pair F=intersectionpoints(Circle(D,2/sqrt(5)),Circle(A,1))[0];
pair G=foot(A,D,F), H=foot(B,A,G), E=foot(C,B,H);draw(A--B--C--D--cycle);
draw(D--F);
draw(C--E);
draw(B--H);
draw(A--G);label("",A,NW);
label("",B,NE);
label("",C,SE);
label("",D,SW);
label("",E,NNW);
label("",F,ENE);
label("",G,SSE);
label("",H,WSW);[/asy]
geometrysymmetryPythagorean Theorem
Floor Tile Pattern
Source:
1/15/2009
An -foot by -foot floor is tiled with square tiles of size foot by foot. Each tile has a pattern consisting of four white quarter circles of radius foot centered at each corner of the tile. The remaining portion of the tile is shaded. How many square feet of the floor are shaded?
[asy]unitsize(2cm);
defaultpen(linewidth(.8pt));fill(unitsquare,gray);
filldraw(Arc((0,0),.5,0,90)--(0,0)--cycle,white,black);
filldraw(Arc((1,0),.5,90,180)--(1,0)--cycle,white,black);
filldraw(Arc((1,1),.5,180,270)--(1,1)--cycle,white,black);
filldraw(Arc((0,1),.5,270,360)--(0,1)--cycle,white,black);[/asy] (A)\ 80\minus{}20\pi \qquad
(B)\ 60\minus{}10\pi \qquad
(C)\ 80\minus{}10\pi \qquad
(D)\ 60\plus{}10\pi \qquad
(E)\ 80\plus{}10\pi
geometry