Linear transformation - change of basis

219 Views Asked by At

Let T be the matrix $T=\pmatrix{4&2\\1&5}$. The basis B is the vectors: $u_1=\pmatrix{1\\1}$ and $u_2=\pmatrix{1\\2}$. Write T with respect to the basis B.

What I've tried (which obviously didn't work) is to write the vectors $\pmatrix{4\\1}$ and $\pmatrix{2\\5}$ as linear combinations of the vectors in B. This is what I've normally would do to the change the basis of a vector. Why doesn't that work here? What am I misunderstanding?

3

There are 3 best solutions below

1
On BEST ANSWER

Given any linear transformation $T$ and a basis $B$, the matrix representation of $T$ in the basis $B$ has the vectors $Tb$, expressed in the basis $B$, as columns. Here $b$ are the vectors of $B$.

In this case you are given the linear transformation through its matrix representation in the standard basis, but that doesn't really change anything.


If you want to think matrix arithmetic, and really understand what's going on from that angle, then in my opinion it really pays off to differ between the two concepts of, on one hand, vectors and linear transformations, and on the other hand, column vectors and matrices: A vector is a point in space, a linear transformation is a squishing, stretching or rotation of all points in that space. Column vectors and a matrices are organized collections of numbers we can use to do calculations. This will require some notation. (Fair warning: this notation is not in any way conventional.)

Notation: Take a vector $v$, a linear transformation $T$, and two bases $A$ and $B$ (a base is an ordered list of vectors). In the basis $A$, the vector $v$ has the column vector representation $v_A$, and $T$ has the matrix representation $T_A$. Also, each of the bases has a matrix representation in the basis $A$: each column is the base-$A$ representation of the corresponding basis vector. So $A_A$ is just the identity matrix $I$, while $B_A$ is the matrix where the $i$'th column is the base-$A$ representation of the $i$'th vector in $B$. Similarily, we also have $v_B$, $T_B$, $A_B$ and $B_B = I$.

One important fact to take with you here is that $B_Av_B = v_A$, or equivalently, that $v_B = B_A^{-1}v_A$. This also implies that $A_B^{-1} = B_A$. This is what change of basis looks like in this notational framework.

Now, what is it that we want to do in this problem? We are given $T_A$ and $B_A$, and we want to calculate $T_B$. Given an arbitrary vector $v$, we have $$ v_A = B_Av_B\\ T_Av_A = T_AB_Av_B\\ B_A^{-1}T_Av_A = B_A^{-1}T_AB_Av_B $$ But the column vector $T_Av_A$ is the basis-$A$ representation of the vector $Tv$. Multiplying that by $B_A^{-1}$ transforms it into the basis-$B$ representation. So we have $$ B_A^{-1}T_Av_A = T_Bv_B $$ Inserting this, we get $$ T_Bv_B = B_A^{-1}T_AB_Av_B $$ Since the vector $v$, and thus the column vector $v_B$ was completely arbitrary, that means that we can factor it out of the above equation, and we get that $$ \boxed{T_B = B_A^{-1}T_AB_A} $$

6
On

What you must express as linear combinations of the vectors of $B$ are the vectors $T.\binom11$ and $T.\binom12$.

2
On

Let condider $M=[u_1\, u_2]$ then M transform a vector from basis B $v_B$ to the standard basis that is

$$v_S=Mv_B\implies v_B=M^{-1}v_S$$

then

$$w_S=Tv_S\implies Mw_B=TMv_B\implies w_B=M^{-1}TMv_B$$

thus the matrix transformation with respect to the new basis is $$M^{-1}TM$$