In Determinant Tic-Tac-Toe, Player 1 enters a 1 in an empty 3 × 3 matrix. Player 0 counters with a 0 in a vacant position, and play continues in turn until the 3 × 3 matrix is completed with five 1’s and four 0’s. Player 0 wins if the determinant is 0 and player 1 wins otherwise.
If a method for player 0 to always win exists, will it work for an (n × n) grid, where n > 3? I would like a detailed proof of whether this method (shown in the below link) would work, as described in the bounty on this question.
Note: A solution for a 3 x 3 can be found at Q4 solutions at http://math.ucr.edu/~muralee/p4sols.pdf but I'm not quite sure how the proof provided extends to an n x n grid.
Perhaps the above could be used as a starting point? Edit: The answer to the first part of the question can be found at Two players put fill $1$ and $0$ in a $3\times 3$ matrix and compute its determinant when it is full. Can Player $0$ win if $1$ starts at the center?
Edit: The determinant of a 3 x 3 matrix is calculated by
\begin{bmatrix}a&b & c\\d&e&f\\g&h&i\end{bmatrix}
The determinant is $$ a (ei-hf) - b (di -gf) + c (dh - ge)$$
Here’s an easier way to represent a winning strategy for Player 0 on the 4x4 matrix:
Whenever player 1 plays in a letter, claim the other of the same letter. The determinant of the resulting matrix must be zero; an easy way to demonstrate that is by direct computation.
Or, we can note that the sum of the first two columns is (1,1,1,1) and the second two columns is (1,1,1,1) so the four columns cannot be linearly independent.
This reasoning carries over to any other size of matrix; in fact, we only need to care about how we play in four of the columns! On a 5x5 we can extend the strategy, this is one of several ways:
Columns 2 and 3 add to (1,1,1,1,1) and columns 4 and 5 add to (1,1,1,1,1) so the determinant must be zero. So it doesn’t matter what goes in the first column.