Search

AMM problem 12449

This is AMM problem 12449 that I solved with my friends Satvik Saha and Sohom Gupta.


Problem Statement -

Let n be a positive integer with n2. The squares of an (n2+n1)-by-(n2+n1) grid are colored with up to n colors. Prove that there exist two rows and two columns whose four squares of intersection have the same color.


Solution -

Define a monochromatic i-pair as an unordered pair of row indices of squares in the same column with the same color i.

Note that if the same i-pair appears in two distinct columns, we have found a monochromatic rectangle. If not, each column must contribute distinct i-pairs, making the maximum number of possible i-pairs (n2+n12), hence the maximum number of monochromatic pairs n(n2+n12).

But if the k-th column contains ki squares of color i, then it contributes

i=1n(ki2)

monochromatic pairs, which is minimized when one ki is n and the remaining n1 many ki are n+1.

Thus, the k-th column contributes at least

(n2)+(n1)(n+12)=n(n2+n2)2

monochromatic pairs, giving a total of at least

(n2+n1)n(n2+n2)2=n(n2+n12)

monochromatic pairs.

Since we have equality, each color i must contribute the same number (i.e. (n2+n12)) of i-pairs, while simultaneously all ki{n,n+1}. The latter means that each color i must contribute a multiple of n many i-pairs, whereas

n(n2+n12)

which is a contradiction.

No comments:

Post a Comment

Introduction to Sumsets II

This is a sequel to a previous post . However, one can technically read it without reading the previous post. Given A,BZ for a c...