I have some trouble with the final steps of a linear algebra proof about eigenvalues. This is the question as given in the problem:
Let $A$, $B$ and $C$ be $n \times n$ matrices. Suppose that $B$ and $C$ are symmetric. Consider the matrix: $$M = \begin{bmatrix} A & B \\ C &-A^T \\ \end{bmatrix}$$ Show that if $λ$ is an eigenvalue of $M$ then so is $-λ$. Hint: $M$ and $M^T$ have the same eigenvalues
I tried to solve it like this:
$$\det(M-λI) = 0$$
$$\det(M^T -λI) = 0$$
So that means that: $\det(M-λI) = det(M^T-λI)$
$$M^T = \begin{bmatrix} A^T & C^T \\ B^T & -A \\ \end{bmatrix} =\begin{bmatrix} A^T & B \\ C &-A \\ \end{bmatrix},$$since $B$ and $C$ are symmetric.
$$\det \begin{bmatrix} A-λI & B \\ C & -A^T-λI \\ \end{bmatrix} = \det\begin{bmatrix} A^T-λI & B \\ C &-A-λI \\ \end{bmatrix}$$
$$\det(-AA^T-AλI+λIA^T+λ^2I-BC)=\det(-A^TA-A^TλI+λIA+λ^2I-BC)$$
This can be rewritten to:
$$\det(-AA^T-AλI+λIA^T+λ^2I-BC)=det(-A^TA+AλI-λIA^T+λ²I-BC)$$
This is the point where I am stuck, i see that if you fill in $λ$ on the left side and $-λ$ on the right side, they are the same except for the $-AA^T$ and $-A^TA$. I know that $-AA^T$ and $-A^TA$ are symmetric so they have the same determinant, but does that help in this proof?. Is there a way to prove that they are the same? And if not, is there an easier way to do the proof?