8

Let $G$ be a finite group and $x_1,..., x_n$ be an enumeration of its elements. We consider the matrix $(a_{ij})_{1\le i,j \le n}$ where $a_{ij}=0$ if $x_i x_j^{-1}=x_jx_i^{-1}$ and $a_{ij}=1$ otherwise. Find the parity of $\det(a_{ij})$.
This problem comes from the 2019 District stage of the Romanian Mathematics Olympiad.
Let $A=(a_{ij})_{1\le i,j \le n}$. One of the $x_i$s is going to be the identity element of $G$. WLOG we may consider it to be $x_1$, since changing rows and columns only affects the sign of a determinant.
I managed to obseve that $A$ is symmetric since $a_{ij}=a_{ji}$ always. Furthermore, $A$'s principal diagonal is going to be $0$ because $x_i x_i^{-1}=x_i^{-1}x_i$, $\forall i=\overline{1,n}$. Hence, $A$ is a symmetric hollow matrix whose entries are either $0$ or $1$. Here I got stuck and I would like to know if it is possible to continue along these lines.

EDIT: As requested, I will translate the official solution:

$\det(a_{ij})$ is even. To prove this, we will show that $\det(a_{ij})$ is divisible by $|S|$, where $S=\{x | x\in G, x\ne x^{-1}\}$. Since an element of $G$ is in $S$ if and only if its inverse is in $S$, $|S|$ is even (possibly zero), so $\det(a_{ij})$ is even.

The value of a determinant is not changed if a column is replaced by the sum of all the columns. Hence, to prove the divisibility it is enough to show that every row contains exactly $|S|$ units.

If $S$ is empty, then $(a_{ij})=O_n$, so $\det(a_{ij})=0$.

If $S$ isn't empty, we fix a row $i$ and we consider the set $J_i=\{j |a_{ij}=1\}$. Since $j \to x_i x_j^{-1}$ defines a bijection from $J_i$ to $S$, it follows that $|J_i|=|S|$.

Ben Grossmann
  • 225,327
Alexdanut
  • 2,807

1 Answers1

3

Answer: $\det(a_{ij})$ is even.

We can prove this as follows.

Case 1: $n=|G|$ is odd.

Note that $a_{ij} = 0$ if an only if $x_ix_j^{-1} = (x_ix_j^{-1})^{-1}$, which is to say that $(x_i x_j^{-1})^2 = 1_G$. By Lagrange's theorem, this implies that $x_ix_j^{-1} = 1_G$, so that $x_i = x_j$. In other words, $A$ is a hollow matrix whose off-diagonal entries are all equal to $1$.

It follows that every row of $A$ has sum $n-1$, which is even. Taking $A$ to be a matrix over $\Bbb F_2$, we therefore find that the vector $x = (1,\dots,1)^T$ is such that $Ax = 0$. Thus, $A$ is not invertible, which is to say that $\det A = 0 \pmod 2$, which is to say that $\det A$ is even.

Case 2: $n = |G|$ is even

Let $T = \{g \in G: g^2 = 1_G\}$. We now have $a_{ij} = 0$ if and only if $x_i x_j^{-1} \in T$, which holds if and only if $x_j = tx_i$ for some $t \in T$. It follows that each row will contain $|T|$ zeros. We know that $|T|$ is even.

It follows that the sum of every row is even. As in the previous case, we deduce that $\det A$ is even.

Ben Grossmann
  • 225,327
  • @Alexdanut I've now updated my post to make it a complete answer; see my latest edit. – Ben Grossmann Mar 15 '20 at 19:32
  • 1
    Thank you, this really helped me out ! I also thought about dividing it into two cases based on $n$'s parity, but I couldn't make further progress. The official solution aims to show that $\det(a_{ij})$ is divisible by $|S|$, where $S={x | x\in G, x\ne x^{-1}}$ and splits it into two cases (whether $S$ is the empty set or not), but their way doesn't seem really intuitive to me and it is a bit difficult to understand. Your solution is really cool :). – Alexdanut Mar 16 '20 at 00:39
  • No problem, glad you liked my answer. Do you have a link for the solution to this problem? I'm curious now – Ben Grossmann Mar 16 '20 at 07:17
  • I have added a translation of the official solution in my original post. – Alexdanut Mar 16 '20 at 09:05
  • 1
    @Alexdanut thanks, I appreciate it! – Ben Grossmann Mar 16 '20 at 09:08
  • 1
    @Alexdanut so they also ultimately show that every row contains an even number of $1$s, but instead of using modular arithmetic they note that we can replace one row with the sum of all rows. Also, instead of finding a way to "count" the zero-entries, they count the unit entries. That's neat – Ben Grossmann Mar 16 '20 at 09:13