Recently I was looking at the tiles on my bathroom floor. They are small square tiles about a square cm each arranged in a grid. They come in two colors, the majority of them are a light brown while a select few of them are a darker brown. Since the color scheme of my bathroom is pretty awful we'll just call them black and white (with white being the more abundant color).
While I was looking at the tiles I was looking for four tiles that formed a the points of a parallelogram. To my dismay there were none (I spent much more time than I care to admit verifying this fact). So I started a new game, I would try to see what tiles I could make black without disturbing this property. Soon I began to wonder how many tiles I could could be black in my bathroom while maintaining this property. I found this a pretty daunting task because there quite a few tiles in my bathroom, so I downsized. First I worked it out with 1 by 1 and 2 by 2 bathrooms. These were pretty easy you can fit 1 tile in a 1 by 1 and 3 in a 2 by 2. 3 by 3 is a little more difficult I was able to determine 5 tiles could be fit.
Proof:
Let us for a moment just consider the following parallelograms:
(the parallelograms with corners in the top and bottom row)
This will require at least 2 white tiles in these rows to break all of these parallelograms, and unless there are more than 2 we need one in the center column. We can make an identical argument for the first and last columns, meaning that we need at least 3 white tiles in the outer ring (corners can be shared between the columns and row but centers cannot).
Originally I made a more complex argument involving a lot of the parallelograms here, but I think it is a little more appropriate to brute force it from here. Here are all the ways that we can have three white tiles that satisfy the properties stipulated above:
I have shaded the parallelograms that can be made from black tiles in red. As we can see all 3 of the possibilities fail.
Since none of these pass we know that there are at least 4 white tiles. Luckily for us I found some solutions with 4 white tiles that do work so we can stop here:
This proof does not scale up to 4 or larger squares very well or at all. It feels barely more elegant brute forcing the problem and I fear that it would take me hours to come up with a proof on a 4 by 4.
As Rahul pointed out and Jaap Scherphuis expanded upon we can create a lower bound for the number of black tiles that can fit on the floor at $2n-1$ (or $m+n-1$ for rectangular floors) by filling in two of the edges. Jaap was kind enough to do a programatic search and found that this lower bound is optimal up to $7\times 7$, however no one has yet proven that $2n-1$ is the best for all squares.
What methods might I use to solve larger or general cases of this problem?
Is the lower bound always the best way?






I was looking for four tiles that formed a the points of a parallelogramThe four leftmost tiles do in fact form a parallelogram. Did you post the right picture? – dxiv Jun 29 '17 at 04:06