I'm learning about the change of basis in linear algebra, and trying to come up with an example to understand it. But somehow my example below doesn't make sense.
Let $B_1 = ((1,0),(0,1))$ be the standard basis in $R^2$, and $v = (2,3)$ be a vector.
Let $B_2$ be another basis of $R^2$, $B_2 = ((1,-1),(1,1))$. My understanding is that, in this system, the same $v$ above has the coordinate $v = (-1/2, 5/2)$.
Let $T: R^2 \rightarrow R^2$, $T(x,y) = (x+2y, 3x - 2y)$.
With $B_1$, $M(T) = \begin{bmatrix} 1 & 2 \\ 3 & -2\\ \end{bmatrix}$, and $T(2,3) = M(T).v = \begin{bmatrix} 1 & 2 \\ 3 & -2\\ \end{bmatrix} .\begin{bmatrix} 2 \\ 3\\ \end{bmatrix} =\begin{bmatrix} 8\\ 0\\ \end{bmatrix}$
With $B_2$, $M(T) = \begin{bmatrix} -1 & 3 \\ 5 & 1\\ \end{bmatrix}$, but $T(-1/2,5/2) = (9/2,-13/2)$, and $M(T).v = \begin{bmatrix} -1 & 3 \\ 5 & 1\\ \end{bmatrix} .\begin{bmatrix} -1/2 \\ 5/2\\ \end{bmatrix} =\begin{bmatrix} 8\\ 0\\ \end{bmatrix}$
I don't understand why in the calculations using $B_2$, $T(-1/2,5/2)$ is not equal to $M(T).v$, and why $M(T).v=\begin{bmatrix} 8\\ 0\\ \end{bmatrix}$. I was expecting that $M(T).v$ would give me something different, because we're using another basis. This "something" could then be "converted" back to $\begin{bmatrix} 8\\ 0\\ \end{bmatrix}$ in the standard basis.
As far as I can see, you found $M(T)$ in basis $B_2$ by letting the columns be the images $T(b_1),T(b_2)$ of the basis vectors $b_i$ of $B_2$... as expressed in basis $B_1$. You need to express the vectors $T(b_1),T(b_2)$ in basis $B_2$, and use that as the columns of $M(T)$.