Alternative ways to represent the complex numbers as matrices

266 Views Asked by At

The canonical way to represent the complex number $a+bi$ as a $2\times2$ matrix is with $\pmatrix{a &b\\-b&a}$, but I have also found that $\pmatrix{a&bx\\\frac{-b}{x}&a}$ will do for any non-zero $x$. Is there some error here or is this also a perfect representation? Furthermore, is this the only way to represent the complex numbers as matrices?

1

There are 1 best solutions below

9
On BEST ANSWER

If you want a representation in the sense of representation theory, then all we need is a matrix satisfying $J^2 = -I$, where $I$ denotes the identity matrix. With that, we can represent the complex number $a + bi$ as the matrix $aI + bJ$. In the usual representation of the complex numbers, we have chosen $$ J = \pmatrix{0&-1\\1&0} $$ (in fact, you have the transpose of the canonical representation in your question). And there are certainly reasons that this $J$ is a "natural" choice.

If we want to find all possible representations, however, we should look for all matrices which satisfy $J^2 = -I$. To that end, a nice approach for $2 \times 2$ matrices is to use the Cayley-Hamilton theorem.

In particular, if $J$ is a real matrix which satisfies $J^2 + I = 0$, then its characteristic polynomial must be $$p(x) = \det(xI - J) = x^2 + 1$$ Thus, we have $$ p(x) = x^2 + 1 = x^2 - \operatorname{tr}(J)x + \det(J) $$ Thus, we must have $\operatorname{tr}(J) = 0$ and $\det(J) = 1$. Indeed, the matrices $$ J = \pmatrix{0 & x\\-1/x & 0} $$ satisfy this condition, and lead to the representations which you have identified.


In general, $J$ must have the form $$ J = \pmatrix{y&x\\-(y^2 + 1)/x&-y} $$ with $x,y \in \Bbb R$ and $x \neq 0$.