[Math] Completing Cayley table for a group

cayley-tablefinite-groupsgroup-theory

The task is to complete the following Cayley table

cayley

for a given group. $e$ is of course the identity element. Together with group axioms and the fact that every Cayley table of a group must be a latin square, I arrived at

cay

Is it correct? I know there is only one possible table and it sure looks like a latin square but I would appreciate if someone could confirm it's correct or not!

Best Answer

I agree with your answer.

Completing the Cayley table of order $6$ (if $pq=e$, it must be $qp=e$, etc.), you get a non commutative ($pr\ne rp$) magma, with identity element $e$.

Each element of it has unique inverse (each one is inverse of itself, but $p$ and $q$ mutually inverses).

Finally, if you relabel $e,p,q,r,s,t$ as $1,2,3,4,5,6$, you get the table

$$\begin{array}{c|cccccc} \cdot & 1 & 2 & 3 & 4 & 5 & 6\\ \hline 1 & \color{green}{1} & \color{red}{2} & \color{red}{3} & \color{blue}{4} & \color{blue}{5} & \color{blue}{6}\\ 2 & \color{red}{2} & \color{red}{3} & \color{green}{1} & \color{blue}{5} & \color{blue}{6} & \color{blue}{4}\\ 3 & \color{red}{3} & \color{green}{1} & \color{red}{2} & \color{blue}{6} & \color{blue}{4} & \color{blue}{5}\\ 4 & \color{blue}{4} & \color{blue}{6} & \color{blue}{5} & \color{green}{1} & \color{red}{3} & \color{red}{2}\\ 5 & \color{blue}{5} & \color{blue}{4} & \color{blue}{6} & \color{red}{2} & \color{green}{1} & \color{red}{3}\\ 6 & \color{blue}{6} & \color{blue}{5} & \color{blue}{4} & \color{red}{3} & \color{red}{2} & \color{green}{1} \end{array}$$

that you can check to be associative by using this brute-force Matlab script.

On the other hand, the above is a quasigroup since the Cayley table is a latin square and an associative quasigroup has identity element too.

Related Question