4

I know there is some unitary matrix $T$ that maps a diagonal matrix $A = \begin{bmatrix}a+bj & 0 \cr 0 & a-bj \end{bmatrix}$ to a real matrix, namely

$$T^{-1}AT = \begin{bmatrix}a & b \cr -b & a \end{bmatrix}$$

but I am having trouble figuring how to construct $T$. At first I thought it was just a Givens rotation, that can't be right because Givens rotations have real entries and that wouldn't eliminate the non-real components.

How can I compute $T$?

Jason S
  • 3,109
  • 1
    How do you know it is unitary? – makansij Sep 01 '18 at 18:45
  • 1
    How do you know it is unitary if the matrix it diagonalizes is not symmetric? (e.g. I know that it is true for real, symmetric matrices: https://math.stackexchange.com/questions/82467/eigenvectors-of-real-symmetric-matrices-are-orthogonal) – makansij Sep 01 '18 at 19:37
  • I'm sorry, I can't answer your question. I don't remember, it was two-and-a-half years ago. – Jason S Sep 02 '18 at 02:33

1 Answers1

2

Let $B$ denote $\pmatrix{a&b\\-b&a}$. Note that $T^{-1} = T^*$ diagonalizes $B$, so its columns are eigenvectors of $B$.


In particular, calculate the first eigenvector $v$ using $$ \pmatrix{-jb & b\\-b & -jb} v = 0 $$ And see that $v = (1,j)$ (which we normalize to $(1/\sqrt 2)(1,j)$) works.

Similarly, find $v = (1,-j)$ for the other eigenvector.

So, we can take $$ T^* = \frac{1}{\sqrt 2}\pmatrix{1&1\\j&-j} $$ Or, multiplying the second column by $j$, we get the slightly neater looking answer $$ T^* = \frac{1}{\sqrt 2}\pmatrix{1&j\\j&1} \implies T = \frac{1}{\sqrt 2}\pmatrix{1&-j\\-j&1} $$ You'll notice that this choice of matrix does not depend on $a$ or $b$.

Ben Grossmann
  • 225,327