MOG Training #7Ended |
Consider an $n \times m$ matrix of ones and zeros. For example, this $4 \times 4$:
We can compute even parity for each row, and each column. In this case, the row parities are $[0, 1, 1, 0]$ and the column parities are $[1, 0, 0, 1]$ (the parity is $1$ if there is an odd number of $1$s in the row or column, $0$ if the number of $1$s is even). Note that the top row is row $1$, the bottom row is row $n$, the leftmost column is column $1$, and the rightmost column is column $m$.
Suppose we lost the original matrix, and only have the row and column parities. Can we recover
the original matrix? Unfortunately, we cannot uniquely recover the original matrix, but with some
constraints, we can uniquely recover a matrix that fits the bill. Firstly, the recovered matrix must
contain as many $1$’s as possible. Secondly, of all possible recovered matrices with the most $1$’s,
use the one which has the smallest binary value when you start with row $1$, concatenate row $2$ to
the end of row $1$, then append row $3$, row $4$, and so on.