The problem
The goal is the show that two real matrices are similar over $\mathbb{R}$ if and only if they are similar over $\mathbb{C}$:
- Let $ T \in GL_{n}\mathbb{C}$, write $T = T_{1} + iT_{2}$ with $T_{1}, T_{2} \in Mat(n, \mathbb{R})$. Prove that there exists a real number $c \in \mathbb{R}$ such that $T_{1} + cT_{2}$ is invertible.
- Prove that two real matrices $A, B \in Mat(n, \mathbb{R})$ are similar over $\mathbb{R}$ if and only if they are similar over $\mathbb{C}$.
What I tried so far
- I tried a proof by contradiction:
Suppose $\nexists c \in \mathbb{R}$ such that $T_{1}+cT_{2}$ is invertible, but $T_{1} +iT_{2}$ is invertible. This is the same as saying $\forall c \in \mathbb{R}: det(T_{1} + cT_{2}) = 0$. Then for $c = 0$ we can see that $det(T_{1}) = 0$, so $T_{1}$ is not invertible. From here on I wanted to show that $T_{1} + iT_{2}$ cannot be invertible if $T_{1}$ is not invertible, but a simple counter example proves this false:
$ T_{1} = \left( \begin{array}{rrr} 0 & 0 \\ 1 & 1 \\ \end{array}\right), T_{2} = \left( \begin{array}{rrr} 2 & 3 \\ 1 & 2 \\ \end{array}\right)\\ $
$T_{1} + iT_{2}$ is invertible, but $T_{1} + cT_{2}$ is not for $c=1$. I am not sure how to go on from here.
- I tried this:
$"\Rightarrow"$ Is trivial, if $\exists S \in Mat(n,\mathbb{R}): B = S^{-1}AS$, then $S \in Mat(n, \mathbb{C})$. Following the definition of matrix similarity, $A, B$ are similar over $\mathbb{C}$.
$"\Leftarrow"$ There exists $S \in GL_{n}(\mathbb{C})$ such that $B = S^{-1}AS \Leftrightarrow SB = AS$. Write $S = S_{1} + iS_{2}$, with $S_{1},S_{2} \in Mat(n, \mathbb{R})$. Therefore $SB = S_{1}B + iS_{2}B = AS_{1} + iAS_{2} = AS$. Separating the real and imaginary parts of the equation gives us $S_{1}B = AS_{1}$ and $iS_{2}B = iAS_{2}$. We are only interested in the real part, which proves $A, B$ are similar over $\mathbb{R}$.
My question
First off, I am not sure wheter my work on 1. could lead somewhere. How would I prove this part? And second, is my proof for 2. correct?