Consider the following polyomino of size 4:
x
xxx
Which rectangles can it tile (allowing translations, rotations and reflections) ? Well, we can prove that a necessary condition for a rectangle to be tilable by it is that its area must be divisible by 8. It can be proved using a coloring argument : https://www.cut-the-knot.org/blue/LtilingOfRectangle.shtml#solution
Now consider a similar one, of size 5:
x
xxxx
I made some tests with a program and it seems that if this one tiles a rectangle, then the area of the rectangle is divisible by 10.
Generally, consider the polyomino of size n:
x
xxx ... x
Then it seems that it's necessary for the area of the rectangle to be a multiple of 2n.
However, I haven't managed to find a suitable coloring to show it (like in the case n = 4). I tried with the same one along with some variations.
It may be useful to look for more advanced tools, and I came across the use of gaussian integers in the following article : https://www.sciencedirect.com/science/article/pii/S0304397508001527
Each case is represented by a complex number x + iy where x and y are integers and we try to find an invariant f.
The article suggests to take f(x + iy) = (x + iy)^m (mod v) where m is a positive integer and v is a gaussian integer such that the image of a polyomino by f is always 0 no matter where it is placed not its orientation. Yet I cannot find a suitable v and m for the case n = 5.
A polyomino is a plane geometric figure, connected, formed by joining a finite number of unit squares edge-to-edge. It is a polyform whose cells are squares. It may be regarded as a finite and connected subset of the regular square tiling.
Polyominoes have been used in popular puzzles since at least 1907, and the enumeration of pentominoes is da...