Writeup: IMO Shortlist 2002 C2
Problem Statement
For an odd positive integer, the unit squares of an chessboard are coloured alternately black and white, with the four corners coloured black. A it tromino is an -shape formed by three connected unit squares. For which values of is it possible to cover all the black squares with non-overlapping trominos? When it is possible, what is the minimum number of trominos needed?
My Solution
Note that if we color the board into 4 colors (based on parity of and -coordinates), then each tile with both an even and coordinate must be covered by one tromino, and we can't cover two of these tiles with one tromino. Since there are such tiles, we need at least trominoes. This isn't possible for and since each tromino covers tiles, and we would be covering more tiles than there are total squares. For , a valid construction is shown below. Also, a way to extend to any odd number by adding two more rows and columns is shown too. So the answer is .
https://drive.google.com/file/d/1H6zTbOBE0tvMjwkdiNixUU1SVzaMr-6Z/view?usp=sharing
https://drive.google.com/file/d/1SHPTZNCzzD0olSw8bKTNc-VGghaLDNW3/view?usp=sharing