1

I have a $2n \times 2n$ real anti-triangular (skew-triangular?) block matrix of the form

$$ M = \begin{bmatrix} A & B \\ I_n & O_n \end{bmatrix} $$

where $I_n$ is the $n \times n$ identity matrix and $O_n$ is the $n \times n$ zero matrix. Note that the blocks $A$ and $B$ are also $n \times n$. Do the eigenvalues of $M$ have any specific relationships with the submatrices of $A$, $B$ (or their eigenvalues)?

Any theory or discussion would be helpful.

sds2002
  • 11
  • 2

2 Answers2

1

Nope as your matrix doesn't need to have a single eigenvalue in general, look at the trivial case where $n=1$ and your blockmatrix is

$$\begin{pmatrix}0 & -1 \\ 1 & 0 \\ \end{pmatrix}$$

As the characteristic polynomial is $x^2+1$ it doesn't have any eigenvalues over $\mathbb{R}$ while $A$ hast the eigenvalue $0$ and $B$ has the eigenvalue $-1$.

1

The exact relationship boils down to a matrix equation, so it does not simplify further with respect to the individual eigenvalues:

\begin{align} &\operatorname{det}\left(\matrix{xI - A & -B \\ -I & xI}\right) \\ =& \pm \operatorname{det}\left(\matrix{ -I & xI \\ xI - A & -B}\right) \quad\text{sign depending on number of row swaps}\\ =& \pm \operatorname{det}\left(\matrix{ -I & xI \\ 0 & -B + xI(xI - A)}\right) \\ =& \pm \operatorname{det}\left(B - xI(xI - A)\right) \\ =& \pm \operatorname{det}\left(B - x^2I + xI\cdot A\right) \\ \end{align}

adam W
  • 5,565
  • If we know from the problem domain that A and B are symmetric and positive definite with a certain form, are there any implications? E.g. can the quadratic formula be applied? – Alex Hirzel Mar 11 '15 at 17:22
  • @AlexHirzel The quadratic formula does not work for matrices, short reason is square roots. Here is a question (with more links) discussing it. – adam W Mar 11 '15 at 20:19
  • Thank you for your reply! I have found square roots for each of my matrices via a diagonalizing Cholesky factorization technique. My $A$ and $B$ are symbolic, SPD, real-valued. I know for my problem I will have three complex conjugate pairs ($A$ is $3x3$) and I want to solve this problem to find constrains for the entries of $A$ and $B$ as well as the solution $X$. Do you think even with these relatively loose conditions the problem is not fruitful? The link you shared seems to deal with general matrices. – Alex Hirzel Mar 12 '15 at 12:27
  • as well as the solution, the eigenvalues* (can't edit comments) – Alex Hirzel Mar 12 '15 at 14:36
  • @AlexHirzel Actually it isn't the square roots that would be helpful. I was thinking of the matrix form of the quadratic equation. Sounds to me that is the determinant of it that you want. I am not sure of any constraints that would be useful. – adam W Mar 13 '15 at 01:56
  • I have made progress today by finding the determinant of my symbolic $[A B;1 0]$ matrix and equating it to a $6 \times 6$ with three symbolic conjugate pairs. It feels like there's a shorter way to do it. =] But I'm not smart enough to find it, so I get to do it the long way. Thanks for your input! – Alex Hirzel Mar 13 '15 at 03:19