Lecture 17 - Continuing Matrices

Recall:

Where V,W are finite dimensional, and v1,...,vn is a basis for V and likewise w1,...,wm is a basis for W. We constructed our transformation matrix via:

T(v1)=A11w1+A21w2++Am1wmT(v2)=A12w1+A22w2++Am2wmT(vn)=A1nw1+A2nw2++Amnwm

creating our matrix representation of a map:

M(T,{v1,...,vn},{w1,...,wm})=[A11A12A1nA21A22A2nAm1Am2Amn]

namely the first equation T(v1)=... becomes the first column of the M matrix we get. Note that we get Aij where:

Let's look at an example of a different linear transformation.

Let T:R3R3, be defined by reflection across the plane 2xy+z=0.

We won't do the proof itself of additivity and homogeneity, but consider the following:

But let's find *a* matrix representation of $T$. Notice that matrix depends on the constructions from the bases given, ie $\mathcal{B}$ and $\mathcal{C}$ so we can choose any bases.

Thus, we could choose e1,e2,e3 as our bases for B,C. But we'd have to find the reflection of each over the plane, which is a lot of work. Instead, we could just choose the normal vector n and two vectors in the plane v1,v2.

So let's not use the standard basis. Can we find two, non-parallel, non-zero vectors on the plane? Let's just choose one vector v1=1,2,0. Let's also just choose another vector v2=2,5,1. These vectors are on the plane, and clearly non-parallel since they're LI.

Thus, choose n=2,1,1 as our last basis vector, so choose B={n,v1,v2}. Notice that our domain and co-domain are the same, so we can use B for both. Thus, look at the transformations for all our vectors:

T(n)=__n+__v1+__v2T(v1)=__n+__v1+__v2T(v2)=__n+__v1+__v2

We know the general geometry of this, so we can fill our blanks intuitively:

T(n)=1n+0v1+0v2T(v1)=0n+1v1+0v2T(v2)=0n+0v1+1v2

Thus extract the matrix:

M(T,B,B)=[100010001]

Notice that the order here matters! The column number indicates which basis vector number in the range we map to. B is an ordered list, not a set, so the order here is important.

One last thing of note is that, had we choose a different basis, like the standard basis {e1,e2,e3}, we could still find the matrix representation of our map:

M(T,{e1,e2,e3},{e1,e2,e3}) previous matrix

However, these matrices do have similar properties. In this way, these matrices are similar matrices.

Something Else

Consider:

We won't prove this, but ST is a linear map here. So if we have some V=v1,...,vn as a basis for V, and W=w1,...,wp is a basis for W, and U=u1,...,um is a basis for U. Let's say we have M(T,V,W). We also have M(S,W,U). Let's denote the matrices A,B correspondingly.

Suppose we want to compute M(ST,V,U). How would we do this? Let's calculate ST(vj) for some vjV:

(ST)(vj)=S(T(vj))=S(k=1pBkjwk)=k=1pBkjS(wk)=k=1pBkji=1mAikui=i=1m(k=1pAikBkj)ui

So we can just define the matrix C such that the ij-th entry is k=1pAikBkj. This correspondingly is an m×n matrix, and this definition shouldn't suprise you since this is the matrix multiplication definition!!!!