A coloring of all plane points with coordinates belonging to the set $S=\{0,1,\ldots,99\}$ into red and white colors is said to be critical if for each $i,j\in S$ at least one of the four points $(i,j),(i + 1,j),(i,j + 1)$ and $(i + 1, j + 1)$ $(99 + 1\equiv0)$ is colored red. Find the maximal possible number of red points in a critical coloring which loses its property after recoloring of any red point into white.
Problem
Source: Turkey JBMO TST 2015 P8
Tags: combinatorics
24.06.2016 18:08
The coloring where $(x,y)$ is red if and only if $x+y$ is 0 or 1 mod 4 satisfies the requested property and has 5000 red points. Still working on showing 5001 is impossible.
25.06.2016 04:02
I think there's got to be a nice way to show 5001 is impossible and I'm still unwilling to admit defeat on finding it, but here is a not-totally-nice way from a fairly obvious idea.
25.06.2016 04:27
Oh, here's the nice way. For each red cell, there is a 2 by 2 square containing it and 3 other white cells. On that red cell, place a copy of the tile below so that the red coincides and rotated so that the dot is at the center of the chosen 2 by 2 square. [asy][asy]size(30); path p = (0,0)--(1,0)--(1,1)--(0,1)--cycle; fill(p, red); draw(p); draw((1,0)--(1.5,0.5)--(1.5,1)--(1,1)--(1,1.5)--(0.5,1.5)--(0,1)); draw((1.5,1)--(1.5,1.5)--(1,1.5)); dot((1,1));[/asy][/asy] It is easy to check that no two of these tiles will overlap. Since each tile has the same white and red area, there must be at least as many white cells as red cells.