A table (where n is a positive integer) is divided into squares. Each square is coloured red, orange, yellow, green, blue, indigo, or violet.
Find the minimum value for so that for any coloring of the table, so that one can pick three rows and columns with all nine intersections being the same color.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Each column has a color that is repeated at least once (pigeonhole) . Rows are 15, so we can choose intersections in ( 3 1 5 ) ways, mulitiply for 7 (colors). If we multiply it for 2, we'll get a table wrong, but any additional column makes the last one ok. So n is:
( 3 1 5 ) ⋅ 7 ⋅ 2 + 1 = 6 3 7 1