Let $A$ be a matrix of order $ n $ with elements defined as $a_{st} = \sin((s + t)\theta)$, where $\theta = \frac{2\pi}{n}$ and $ 1 \leq s, t \leq n $. I am interested in computing the determinant of $I + A$, where $I$ is the identity matrix of the same order.
My approach is to use the Spectral Theorem and express $A$ in the form $VDV^{-1}$, where $V$ is an orthogonal matrix and $D$ is a diagonal matrix with the eigenvalues of $A$ on its diagonal. Utilizing the identity $\det(I + AB) = \det(I + BA)$, I rewrite $\det(I + A)$ as follows:
$ \det(I + A) = \det(I + VDV^{-1}) = \det(I + V^{-1}VD) = \det(I + D). $
Therefore, it seems that finding the eigenvalues of $A$ would be sufficient to solve the problem. Through some case analysis, I've observed that for $n > 2$, the eigenvalues of $A$ appear to be $\frac{n}{2}$, $-\frac{n}{2}$, and $0$ (with $0$ having a multiplicity of $n-2$). However, I am struggling to prove this conclusively. I only figure out that $0$ is indeed a eigenvalue because each row of $A$ sum to $0$.
Questions:
- Is my approach to finding $\det(I + A)$ correct?
- How can I rigorously prove the observed eigenvalues of $A$ for $n > 2$?
- Are there any alternative methods or insights that could simplify the problem?
https://math.stackexchange.com/questions/2514187/eigenvalues-of-anti-circulant-matrix.
– Ciarán Ó Raghaillaigh Nov 20 '23 at 05:08