[Math] Proving that $GL_n(F)$ is non-abelian for $n \geq 2$ and for any field $F$

abstract-algebramatrices

I'm trying to show that $GL_n(F)$ is non-abelian for any field $F$ and $n \geq 2$. I'm doing so by constructing two $2 \times 2$ matrices that do not commute and "extending" them to $n \times n$ matrices with zeros in every other entry. We define $\displaystyle A = \left[ \begin{array}{cc} 1 & 1 \\ 0 & 1 \end{array}\right]$ and $\displaystyle B = \left[ \begin{array}{cc} 1 & 0 \\ 1 & 1 \end{array}\right]$. A quick calculation reveals that $AB \neq BA$, so the products of the extended $n \times n$ matrices are also not equivalent.

My question is: does this suffice in proving the statement for any field $F$? The only field that I can think of where this might fail is in $\mathbb{Z}/2\mathbb{Z}$, but that turns out to not be the case.

Best Answer

As explained in the comments, the problem is one of extending the two matrices in such a way that 1) the same non-commutativity can be easily verified and 2) the matrices are non-singular.

A standard recipe is to extend by ones along the diagonal and zeros elsewhere.

Why is this "standard"? The way I think about it is in terms of linear transformations. Remeber that matrix multiplication is defined to faithfully represent composition of linear transformations (matrices are with respect to a given basis).

If $n>2$ we can write the vector space $V=F^n$ as a direct sum $V=F^2\oplus F^{n-2}$. The two matrices, $A$ and $B$, can be thought of as two linear transformations, $T_A$ and $T_B$, from $F^2$ to itself. Now we can define two linear transformations from $V$ to itself as follows. Using the above direct sum decomposition we can write any vector $v\in V$ as $v=(x,y)$ with $x\in F^2$ and $y\in F^{n-1}$. Define $E_A:V\to V$ by declaring $E_A(v)=(T_A(x),y)$ and similarly define $E_B:V\to V$ by $E_B(v)=(T_B(x),y)$. Because $T_A,T_B$ and the identity mapping of $F^{n-2}$ are all invertible, these linear transformations are both non-singular. They do not commute, because they do not commute on vectors of the form $v=(x,0)$ by your calculation. Thus we are done.

We also see that the matrices of $E_A$ (resp. $E_B$) with respect to the usual basis have the block structure $$ E_A=\left(\begin{array}{c|c} A&0\\ \hline 0&I_{n-2} \end{array}\right)\qquad \text{and}\qquad E_B=\left(\begin{array}{c|c} B&0\\ \hline 0&I_{n-2} \end{array}\right) $$ respectively.

Related Question