Problem:
An matrix of integers is called "golden" if, for every row and every column, their union contains all of the numbers . Find all golden matrices (of all sizes).
Problem:
An matrix of integers is called "golden" if, for every row and every column, their union contains all of the numbers . Find all golden matrices (of all sizes).
Solution:
The matrix whose only entry is is certainly golden; we claim there are no others. To see this, note that each of the numbers must appear at least times in the matrix. (Proof: Suppose some number appears less than times. Because there are columns, some column does not contain . Likewise, some row does not contain ; then the union of this row and this column fails to contain , contrary to the given). So we have at least entries in the matrix. But an matrix has entries, so , and only the matrix can be golden.
Solution:
As before, the matrix consisting only of a is golden. Now, note that the union of any row and any column in an golden matrix contains exactly entries, so each of the numbers must appear exactly once in this union. Therefore, there is no room in the matrix for any numbers other than . Moreover, if any of these entries appeared twice, say once at the intersection of the th row and th column and once at the th row and th column, then the union of the th row and th column would contain this number twice, not leaving enough room for the remaining numbers. So each number can appear only once in the matrix, meaning it can have only entries. Thus , and only the matrix is golden.