019. Tiling

Prove that the following two propositions are equivalent when mm and nn are natural numbers greater than or equal to 2.

  • mnmn is a multiple of 8.
  • Using multiple shapes in the following figure, a rectangle with width mm and height nn can be tiled.

019-1


Let T(m,n)T(m, n) be the tiled rectangle with width mm and height nn using the above shape. Then, T(4,2)T(4, 2) and T(8,3)T(8, 3) are possible as follows.

019-2

Since T(m,n)=T(n,m)T(m, n) = T(n, m), the condition that mnmn is a multiple of 8 can be considered only in the following two cases.

  • case 1: mm is a multiple of 4 and nn is even.
    • T(m,n)T(m, n) is possible because it is a combination of multiple T(4,2)T(4, 2).
  • case 2: mm is a multiple of 8 and nn is odd.
    • T(m,n)T(m, n) can be tiled by dividing it into T(m,3)T(m, 3) and T(m,n3)T(m, n - 3). Here, T(m,3)T(m, 3) can be made by combining multiple T(8,3)T(8, 3), and T(m,n3)T(m, n - 3) is also possible because it corresponds to case 1.

Now, to prove the converse, assume that there exists some possible tiling T(m,n)T(m, n). Since the area of ​​this L-shaped figure is 4, mnmn is a multiple of 4. That is, since at least one of mm and nn is even, let mm be even.

Let’s divide T(m,n)T(m, n) into unit squares and assign 1, -1, 0 to each unit square as follows.

  • Odd rows: 1, -1, 1, -1, \cdots, 1, -1
    • Since mm is even, the total number assigned is even.
  • Even rows: all 0s

Then, no matter how the L-shaped figure is placed inside T(m,n)T(m, n), the sum of the numbers inside this shape is either 1 or -1. As can be seen in the figure below, the result is the same even when symmetrically placed.

019-3

However, since the sum of all numbers inside T(m,n)T(m, n) is 0, the number of the L-shaped figures whose inner sum is 1 and the number of the ones whose inner sum is -1 are equal. That is, the number of the L-shaped figures that make up T(m,n)T(m, n) is even. Therefore, the area of ​​T(m,n)​​T(m, n) is 42k4 * 2k, so mnmn is a multiple of 8.


© 2025. All rights reserved.