Eigenvalues of matrix with ijth entry as $i+j$

289 Views Asked by At

Let $A$ be a matrix with entries as $(a_{ij})=i+j$. I would like to find out eigenvalues of $A$.

I noticed that after reducing the matrix to Echelon form only two non zero rows will be left and thus rank(A)=2, that means $n-2$ eigenvalues are zero. Let $\lambda_1, \lambda_2$ be two non zero eigenvalues, then as trace(A)=$n(n+1)$, we get $\lambda_1+ \lambda_2= n(n+1)$. How do I find another relation in $\lambda_1, \lambda_2$

1

There are 1 best solutions below

3
On

The conjecture of Carl Schildkraut concercing $\lambda_1 \lambda_2$ is correct up to a minus sign. I assume $1$-indexed rows and columns, however. Note that $\lambda_1^2$ and $\lambda_2^2$ are the two non-zero eigenvalues of $A^2$, and since $A$ is symmetric, $AA = A^T A$. Using the formula $\mathrm{Tr}(X^TY) = \sum_{i, j = 1}^n X_{ij}Y_{ij}$ for $(n \times n)$-matrices (see for example, this Wikipedia page), we find that \begin{align*} \lambda_1^2 + \lambda_2^2 = \mathrm{Tr}(A^T A) &= \sum_{i, j = 1}^n (i + j)^2 = \sum_{i, j = 1}^n (i^2 + 2ij + j^2) \\ &= 2n \cdot \frac{n (n + 1)(2n + 1)}{6} + 2 \cdot \left(\frac{n (n + 1)}{2}\right)^2 \\ &= n^2 (n + 1) \frac{7n + 5}{6}. \end{align*} Using this expression and the fact that $\lambda_1^2 + \lambda_2^2 = (\lambda_1 + \lambda_2)^2 - 2 \lambda_1 \lambda_2$, we find that \begin{align*} \lambda_1 \lambda_2 &= \frac{n^2 (n + 1)^2}{2} - \frac{n^2 (n + 1) (7n + 5)}{12} \\ &= \frac{n^2 (n + 1)}{12} (6n + 6 - 7n - 5)\\ &= - \frac{n^2 (n + 1)(n - 1)}{12} = - \frac{n^2(n^2 - 1)}{12}. \end{align*}