Eigenvalues of symmetric and skew-symmetric zero line sum matrix

291 Views Asked by At

Suppose I have a $n \times n$ symmetric matrix along the main diagonal that is also anti-symmetric along the other diagonal. The rows and columns add to 0. For example,

$$ \begin{bmatrix} a & b & c & 0 \\ b & d & 0 & -c \\ c & 0 & -d & -b \\ 0 & -c & -b & -a \end{bmatrix} $$

I want to show for the general case that all eigenvalues are zero except two, one positive and one negative, equal in magnitude but opposite. My idea is to show the rank of the matrix is only $2$, which then since the trace is zero I can say that the two non-zero eigenvalues must be opposites.

The problem however is that I can't show rank $=2$ for a general $n \times n$. All I can reason is that since it is a Zero Line Sum matrix, the rank is at most $n-1$. Perhaps I am missing a condition that could make this true? Any help is appreciated. Thanks!

1

There are 1 best solutions below

0
On BEST ANSWER

The statement you are trying to prove isn't true when $n \ge 5$. For example, when $n = 5$, consider the matrix $$\begin{bmatrix}1&0&0&-1&0 \\ 0&0&-1&0&1 \\ 0&-1&0&1&0 \\ -1&0&1&0&0 \\ 0&1&0&0&-1\end{bmatrix}.$$

You can check that the above matrix satisfies all the desired properties, but its rank is $4$ not $2$.

In general, if we define an $n \times n$ matrix $A$ by $$A_{i,j} = \begin{cases}1 & \text{if} \ i=j=1 \\ -1 & \text{if} \ i+j=n \\ 1 & \text{if} \ i+j = n+2 \\ -1 & \text{if} \ i=j=n \\ 0 & \text{otherwise}\end{cases},$$ then $A$ satisfies the conditions of the problem, but $\text{rank}(A) = \begin{cases}n-1 & \text{if} \ n \ \text{is odd} \\ n-2 & \text{if} \ n \ \text{is even}\end{cases}.$