We say that a sequence $x_1, x_2,\ldots, x_n$ is increasing if $x_i ≤ x_{i+1}$ for all $1 ≤ i < n$. How many ways are there to fill an 8 x 8 table with numbers 1, 2, 3, and 4 such that:
• The numbers in each row are increasing from left to right
• The numbers in each column are increasing from top to bottom,
• and there is no pair of adjacent cells such that one is filled with 2 and the other one is filled with 3 (We say two distinct cells are adjacent if they share a side)
(I think you can build a system where you transform the problem into two seperate grids, such that they only contain 1s and 2s, but still follow the restrictions.
Then we compare the two grid numbers: 1 and 1 = 1, 1 and 2 = 2, 2 and 1 = 3 and 2 and 2 = 4, where the first number is taken from the first grid and the second from the second. Notice that here 2 and 3 can't be adjacent because that would mean that in one of the grids a 2 is followed by a 1.
Lastly, someone said the answer was $\binom{16}{8}^2$ while another person said $\binom{20}{10}^2$, both without reasoning.)
