Purple Comet 2009 MS Problem 10
Source:
April 29, 2013
geometry
Problem Statement
The diagram shows a by square . The points , , and are equally spaced on side . The points , , , and on side are placed so that the triangles , , , and are isosceles. Points and are midpoints of the sides and , respectively. Find the total area of the shaded regions.[asy]
size(175);
defaultpen(linewidth(0.8));
real r=20/8;
pair x[];
draw(origin--(0,20)--(20,20)--(20,0)--cycle);
string label[]={"B","K","E","J","F","I","G","H","C"};
for(int i=1;i<=7;i=i+1)
{
if(floor(i/2)==i/2)
{
x=(i*r,0);
label("",x,S);
} else {
x=(i*r,20);
label("",x,N);
}
}
filldraw(origin--x[1]--x[2]--x[3]--x[4]--x[5]--x[6]--x[7]--(20,0)--(20,10)--(0,10)--cycle,gray);
label("",origin,SW);
label("",(20,0),SE);
label("",(0,20),NW);
label("",(20,20),NE);
label("",(20,10),E);
label("",(0,10),W);
[/asy]