February 15th, 2007, 2:24 pm
Yes, n has to be a multiple of 2 or 3 for it to work. There might be an easier way to prove this, but I did it in the following way. Color the checkerboard like the following:1 3 1 3 1 3 1 ...2 4 2 4 2 4 2 ...3 1 3 1 3 1 3 ...4 2 4 2 4 2 4 ...1 3 1 3 1 3 1 ...2 4 2 4 2 4 2 ...... ... ... ... ...Note that any 2x2 square contains exactly one 1, 2, 3, and 4. Also, the 3x3 squares can cover in one of the 4 patterns, R, S, T, or U: R S T U1 | 3 1 3 22 | 2 3 1 33 | 3 2 3 14 | 1 3 2 3Now if n is even, clearly we can cover it. If n is 1 mod 4, looking at the picture, we see that there will be an equal number of 1's, 2's, 3's, and 4's in the first n-1 rows (since n-1 is divisible by 4). In the bottom row there will be (n+1)/2 1's and (n-1)/2 3's. This means that however many 3x3 squares we have, we must have an equal number of squares of type R and T (since there are an equal number of 2's and 4's), call that number a. Moreover if we call b the number of squares of type S, there must be b+1 squares of type U (since there's one more 1 than there are 3's). Then the number of 1's is 3a + b + 3a + 2(b+1) = 6a + 3b + 2 and the number of 2's is 2a + 3b + a + 3(b+1) = 3a + 6b + 3. Hence (n+1)/2 = (6a + 3b + 2) - (3a + 6b + 3) = 3(a-b)-1 which implies that n = 6(a-b)-3, hence n is a multiple of 3.The case where n is 3 mod 4 proceeds similarly, but here you need 1 more 2 than there are 4's, an equal number of 1's and 3's, and (n+1)/2 more 1's than 4's. Thus if c is the number of T's, there have to be c+1 R's, and there have to be an equal number d of S's and U's, and we find that (6c+3+3d)-(3c+1+6d) = (n+1)/2 which implies that n = 6(c-d) + 3, which is also a multiple of 3.