AJHSME 1991 Problem 16
Source:
June 24, 2011
Problem Statement
The squares on a piece of paper are numbered as shown in the diagram. While lying on a table, the paper is folded in half four times in the following sequence:[*]fold the top half over the bottom half
[*]fold the bottom half over the top half
[*]fold the right half over the left half
[*]fold the left half over the right half.
Which numbered square is on top after step ?[asy]
unitsize(18);
for(int a=0; a<5; ++a)
{
draw((a,0)--(a,4));
}
for(int b=0; b<5; ++b)
{
draw((0,b)--(4,b));
}
label("",(0.5,3.1),N); label("",(1.5,3.1),N); label("",(2.5,3.1),N); label("",(3.5,3.1),N);
label("",(0.5,2.1),N); label("",(1.5,2.1),N); label("",(2.5,2.1),N); label("",(3.5,2.1),N);
label("",(0.5,1.1),N); label("",(1.5,1.1),N); label("",(2.5,1.1),N); label("",(3.5,1.1),N);
label("",(0.5,0.1),N); label("",(1.5,0.1),N); label("",(2.5,0.1),N); label("",(3.5,0.1),N);
[/asy]