Interesting facts about the matrix $ A^\ast = \left(\begin{smallmatrix} A & -aI \\ a I & A \end{smallmatrix}\right)$ where $A$ is negative definite

block matriceslinear algebramatrices

I have a fairly general question about facts of the following matrix

$$ A^\ast = \begin{pmatrix} A & -aI \\
a I & A
\end{pmatrix}$$

where $A \in \mathbb{R}^{n \times n}$ is negative definite, $I$ is the $n$-dimensional identity matrix and $a>0$.

For example, from the above assumptions it's obvious that $A^\ast$ is negative definite.
Using the answer to this question, the determinant of $A^\ast$ is given by $\det(A^\ast)=\det(A^2+a^2 I)$.

I'm looking for more "interesting" facts, like is there an easy way to compute $A^{\ast-1}$ given $A^{-1}$, can we say something about the eigenvalues of $A^\ast$ given the eigenvalues of $A$ etc.

Best Answer

In terms of the Kronecker product, your matrix is $$ A^* = I \otimes A + a \pmatrix{0&-1\\1&0} \otimes I. $$ Using this, we can deduce that for every eigenvalue $\lambda$ of $A$, $\lambda \pm ai$ are eigenvalues of $A^*$.

Note that, via the vectorization operator, we see that $A^*$ is the matrix associated with the operator $\Phi:\Bbb R^{n \times 2} \to \Bbb R^{n \times 2}$ defined by $$ \Phi(X) = AX - X \pmatrix{0& -a\\a & 0}. $$

We also find that because the block entries of $A^*$ commute, the inverse of $A^*$ can be found in a straightforward fashion.

Related Question