I have these two basis of $M^R_{2x2}$:
$C= (\begin{pmatrix}1 & 0 \\ 0 & 0\end{pmatrix}, \begin{pmatrix}0 & 1 \\ 0 & 0\end{pmatrix}, \begin{pmatrix}0 & 0 \\ 1 & 0\end{pmatrix}, \begin{pmatrix}0 & 0 \\ 0 & 1\end{pmatrix} )$
$B= (\begin{pmatrix}1 & 1 \\ 0 & 0\end{pmatrix}, \begin{pmatrix}0 & 1 \\ 1 & 0\end{pmatrix}, \begin{pmatrix}0 & 0 \\ 1 & 1\end{pmatrix}, \begin{pmatrix}0 & 0 \\ 0 & 1\end{pmatrix} )$
And I need to find: $$M_C^B, M_B^C$$
Now, I'm pretty now sure what is the process of finding the transformation matrix from one vector to another.
Can someone please help me understand it?
Hint:
Let $C_1,C_2,C_3,C_4$ be the elements of the canonical basis $C$, than you can represent any matrix $X$ in $M(2,\mathbb{R})$ as a linear combination $$ X=x_1C_1+x_2C_2+x_3C_3+x_4C_4 $$ that is a vector of components $(x_1,x_2,x_3,x_4)^T$ with respect to the basis $C$.
For the elements of the new basis $B$ you have: $$ B_1=C_1+C_2=(1,1,0,0)^T \quad B_2=C_2+C_3=(0,1,1,0)^T $$ $$ B_3=C_3+C_4=(0,0,1,1)^T \quad B_4=C_4=(0,0,0,1)^T $$
So the matrix:
$$ M= \begin{bmatrix} 1&0&0&0\\ 1&1&0&0\\ 0&1&1&0\\ 0&0&1&1 \end{bmatrix} $$ and its inverse $M^{-1}$ represent the transformations between the basis $B$ and $C$.