MathDB
Purple Comet 2009 MS Problem 10

Source:

April 29, 2013
geometry

Problem Statement

The diagram shows a 2020 by 2020 square ABCDABCD. The points EE, FF, and GG are equally spaced on side BCBC. The points HH, II, JJ, and KK on side DADA are placed so that the triangles BKEBKE, EJFEJF, FIGFIG, and GHCGHC are isosceles. Points LL and MM are midpoints of the sides ABAB and CDCD, 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(""+label+""+label+"",x,S); } else { x=(i*r,20); label(""+label+""+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("BB",origin,SW); label("CC",(20,0),SE); label("AA",(0,20),NW); label("DD",(20,20),NE); label("MM",(20,10),E); label("LL",(0,10),W); [/asy]