Change of basis vectors similarity transformation

1.1k Views Asked by At

Working through "Linear Algebra and Its Applications" by Gilbert Strang. This comes from chapter 5.6 on similarity transformations.

THe similar matrix $B = M^{-1}AM$ is closely connected to $A$, if we go back to linear transformations. Remember the key idea: Every linear transformation is represented by a mtrix The matrix depends on the choice of basis!. If we change the basis by $M$ we change the matrix A to a similar matrix $B$.

Similar matrices represent the same transformation $T$ with respect to different bases.

He then gives this small example graph.

similar matrices

which I interpreted as this...

$A$ is a linear transformation projecting any vector in $\mathbb{R}^2$ onto the column space of $A$ using (1, 0) and (0, 1) as basis vectors that define our point of view.

If we change the basis vectors according to (1, 1) and (1, -1) by $B = M^{-1}AM$ with $M$ being a matrix of the new basis (eigenvectors of $A$ in this example. Then the new matrix $B$ will transform any point in $\mathbb{R}^2$ with the new basis vectors.

But here is where I am confused... It says $V_2$ is projected to zero and $V_1$ projects to $V_1$, but if I use $\Lambda$ (which is equal to $B$ here) as the transformation, I can see $V_1, V_2$ both project to (1, 0) which doesn't make sense

1

There are 1 best solutions below

0
On

Thanks to the comments I was able to see that after the basis change occurs, $V_1$ is the new (0, 1) so when that is transformed by $\Lambda$, it projects to 0 and $V_1$ is the new (1, 0) which stays right in place when we multiply $\Lambda (1, 0)^T$

I think the important parts that I was missing was that the projection stays the same (we are still projecting to the same line) but out point of view of where the gridlines are has changed (which is what the basis vectors tell us).