Cute Determinant Question

I stumbled across the following problem and found it cute.

Problem: We are given that $19$ divides $23028$, $31882$, $86469$, $6327$, and $61902$. Show that $19$ divides the following determinant:

$$\left| \begin{matrix} 2 & 3&0&2&8 \\ 3 & 1&8&8&2\\ 8&6&4&6&9\\ 0&6&3&2&7\\ 6&1&9&0&2 \end{matrix}\right|$$


Solution 1:

Multiply the first column by $10^4$, the second by $10^3$, third by $10^2$ and fourth by $10$ - this will scale the value of the determinant by $10^{4+3+2+1}=10^{10}$, which is coprime to $19$. Now add the last four columns to the first one - this will not change the value of the determinant. Finally notice the first column now reads $23028, 31882, 86469, 6327$, and $61902$: each is a multiple of $19$ so we can factor a nineteen cleanly out the determinant.

Solution 2:

If the determinant is $0$ it is obvious that $19|0$. Now suppose that the determinant is not $0$.

$$\begin{align*} 2\cdot10^4+3\cdot10^3+0\cdot10^2+2\cdot10+8\cdot1&=23028\\ 3\cdot10^4+1\cdot10^3+8\cdot10^2+8\cdot10+2\cdot1&=31882\\ 8\cdot10^4+6\cdot10^3+4\cdot10^2+6\cdot10+9\cdot1&=86469\\ 0\cdot10^4+6\cdot10^3+3\cdot10^2+2\cdot10+7\cdot1&=06327\\ 6\cdot10^4+1\cdot10^3+9\cdot10^2+0\cdot10+2\cdot1&=61902 \end{align*}$$

By Cramer's rule

$$1=\frac{\left|\begin{matrix} 2 & 3 & 0 & 2 & 23028 \\ 3 & 1 & 8 & 8 & 31882 \\ 8 & 6 & 4 & 6 & 86469 \\ 0 & 6 & 3 & 2 & 06327 \\ 6 & 1 & 9 & 0 & 61902 \end{matrix}\right|}{\left|\begin{matrix} 2 & 3 & 0 & 2 & 8 \\ 3 & 1 & 8 & 8 & 2 \\ 8 & 6 & 4 & 6 & 9 \\ 0 & 6 & 3 & 2 & 7 \\ 6 & 1 & 9 & 0 & 2\end{matrix}\right|}$$

Then

$$\left|\begin{matrix} 2 & 3 & 0 & 2 & 8 \\ 3 & 1 & 8 & 8 & 2 \\ 8 & 6 & 4 & 6 & 9 \\ 0 & 6 & 3 & 2 & 7 \\ 6 & 1 & 9 & 0 & 2\end{matrix}\right|=\left|\begin{matrix} 2 & 3 & 0 & 2 & 23028 \\ 3 & 1 & 8 & 8 & 31882 \\ 8 & 6 & 4 & 6 & 86469 \\ 0 & 6 & 3 & 2 & 06327 \\ 6 & 1 & 9 & 0 & 61902 \end{matrix}\right|$$

But last determinant is obviously divisible by $19$.

Solution 3:

Integer proof

Perform the column operation $C_5\leftarrow 10^4C_1+10^3C_2+10^3C_3+10C_4+C_5$: the coefficient of $C_5$ is $1$ so this doesn't change the determinant.

All elements of $C_5$ ($23028$, $31882$, $86469$, $6327$, and $61902$) are now divisible by $19$, so we can factor out $19$: hence the determinant is divisible by $19$.


Modular proof

In $\mathbb Z/19\mathbb Z$, the columns $10^4C_1+10^3C_2+10^3C_3+10C_4+C_5$ sum to $0$: hence the matrix is not invertible and has determinant $0$. So in $\mathbb Z$, the determinant is a multiple of $19$.