Let's have the following $(n+1) \times (n+1)$ matrix with block elements
$\mathbf{Y} = \begin{bmatrix} \mathbf{A} & - \mathbf{w} \\ - \mathbf{w}^{T} & b \end{bmatrix}$
where $\mathbf{A}$ is a $n \times n$ matrix, $\mathbf{w}$ is a $n$-dimensional vector, and $b$ is a scalar.
Is it possible to calculate the eigenvalues of $\mathbf{Y}$ if we already know the eigenvalues of $\mathbf{A}$, as well as the values of $\mathbf{w}$ and $b$?
Thanks in advance!
No, it is not. Consider the following example in the case $n=2$: $$ Y_1 = \pmatrix{1 & 0 & 1\cr 0 & -1 & 0\cr 1 & 0 & 0\cr},\ Y_2 = \pmatrix{-1 & 0 & 1\cr 0 & 1 & 0\cr 1 & 0 & 0\cr}$$ Here $A_1 = \pmatrix{1 & 0\cr 0 & -1\cr}$ and $A_2 = \pmatrix{-1 & 0\cr 0 & 1\cr}$ have the same eigenvalues, and the $b$ and $w$ are the same. But $Y_1$ and $Y_2$ have different determinants ($+1$ and $-1$ respectively) and therefore different eigenvalues.