The given task is to find all 2x2 Matrices A that are similar to:
a) $\begin{bmatrix} 0 & 0 \\ 0 & 0 \end{bmatrix}$
b) $\begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}$
c) $\begin{bmatrix} 1 & 0 \\ 0 & 2 \end{bmatrix}$
However, I don't really know which steps to take. Obviously, since they are all in their diagonal form we can see that they have the eigenvalues
a) $\lambda = 0$
b) $\lambda = 1$
c) $\lambda_{\mathrm{1}} = 1,\lambda_{\mathrm{2}} = 2$
Now how do I go about finding the general matrix $A$ that is similar to these? Do I have to define $A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}$ and calculate its eigenvalues and eigenvectors?
I know that the definition of similar matrices $A,B$ is that there exists some matrix $S$ so that:
$A = S^{-1}BS$
but I don't think that defining a general $S= \begin{bmatrix} e & f \\ g & h \end{bmatrix}$
and solving the equation is the proper way to do it. I also have a feeling that this has something to do with Jordan-Blocks but I can't seem to figure it out.
I'm sorry if this is a stupid question or something really simple, but we only had lectures on the whole topics of eigenvalues, eigenvectors and general eigenvectors two days ago.