I was wondering if I found my eigenvalues correctly for the following matrix:
$$A = \begin{bmatrix} -14 & 8 &0&0 \\ -12 &6&0&0 \\ 0&0&-20&21 \\ 0&0&-28&29 \end{bmatrix}$$
$\lambda = -6, -2, 1, 8.$
How I found the eigenvalues is by splitting this $4\times4$ matrix into $2\times2$ block matrices and finding their eigenvalues for those matrices. It seemed to work, but is this a correct way to go about it?
For every block matrix
$$A = \begin{pmatrix} B & 0 \\ 0 & C \end{pmatrix} $$
with $B, C \in \mathbb{C}^{n \times n}$ it holds that $\det(A) = \det(B) \det(C)$.
Every eigenvalue of your matrix $A$ satisfies $\det(A - \lambda I ) = 0$. Hence such an eigenvalue also satisfies
$$\det(A - \lambda I) = \det(B - \lambda I) \det(C - \lambda I) = 0$$
and your reasoning is correct.