Diagonalized matrix not zero on sidelines

43 Views Asked by At

I try to diagonalize: $Y = \left(\begin{array}{ccc} X & -X & 0\\ -X & X & 0\\ 0 & 0 & 2\,X \end{array}\right)$

after doing the general diagonalization formula: $Y_{\mathrm{Diagonalized}} = V^{-1}\,\Lambda\,V$ I get:

$Y_{\mathrm{Diagonalized}} = \left(\begin{array}{ccc} \frac{1}{2} & \frac{1}{2} & 0\\ -\frac{1}{2} & \frac{1}{2} & 0\\ 0 & 0 & 1 \end{array}\right) \,\left(\begin{array}{ccc} 0 & 0 & 0\\ 0 & 2\,X & 0\\ 0 & 0 & 2\,X \end{array}\right)\,\left(\begin{array}{ccc} 1 & -1 & 0\\ 1 & 1 & 0\\ 0 & 0 & 1 \end{array}\right) = \left(\begin{array}{ccc} X & X & 0\\ X & X & 0\\ 0 & 0 & 2\,X \end{array}\right)$

Why this is having non zero entries not only on the diagonal?

2

There are 2 best solutions below

0
On BEST ANSWER

"Diagonalizing" $Y$ means finding an invertible matrix $V$ and a diagonal matrix $\Lambda$ such that $Y = V\Lambda V^{-1}$. Writing $Y$ in such a fashion does not change $Y$; if $Y$ was not diagonal before, then it is still not diagonal.

The diagonal matrix that is being associated with $Y$ in this "diagonalization" is $\Lambda$. The relationship between $Y$ and $\Lambda$ is that they are similar matrices. If you like, you make think of the equation $$ \Lambda = V^{-1}YV $$ as saying that "by applying the change of basis described by $V$, we can "make $Y$ diagonal".

0
On

I assume that using capital letter $X$, you mean a block, not a single real.

In this case, you can write this matrix by block under the form of a Kronecker product:

$$Y=X \otimes A \ \text{with} \ A:=\begin{pmatrix}1&-1&0\\-1&1&0\\0&0&2\end{pmatrix}$$

Therefore (see the Wikipedia article),the eigenvalues of the matrix $Y$ are all possible products of the eigenvalues of $X$ with the eigenvalues of $A$, i.e., $\lambda_1=0, \lambda_2=2 $, this one with multiplicity $2$.

For example, if the eigenvalues of $X$ are $5,7$, the eigenvalues of $Y$ are:

$$0 \ (double), \ \ 10 \ (double), \ \ 14 \ (double)$$