Lecture 16 - Types of Transformations

Recall that an onto (surjective) means that all outputs have a corresponding input. We also have one-to-one (injective) that implies that any outputs that are the same have the same inputs. A bijective function is both injective and surjective.

An injective T

TL(V,W) is injective iff null(T)={0}.

Proof
Consider . Suppose that T is injective. We need to show that null(T) is just the zero vector. Let xnull(T). So then T(x)=0. Notice that also T(0)=0. Since T is an injective map, then since T(x)=T(0) then x=0.

Consider . Suppose that null(T)={0}. Let T(x)=T(y) where x,yV are arbitrary. Then we can say:

T(x)T(y)=0=T(xy)

So since since the nullspace only contains the zero vector, xy=0 so x=y finishing showing injectivity.

Recall that:

dim(V)=dim(null(T))+dim(range(T))

Note that if dimV=n and dimW=m:

Getting into 3.C: Matrices

Recall that linear transformations are defined by their actions on the basis vectors.

Suppose we have:

Where B=(v1,...,vn) is a basis for V, and C=(w1,...,wm). We need to write down all the transformations as:

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

So if you know all the Aij's then you would have the whole picture of the transformation. So then you can just extract these coefficients and put them into an array called a matrix:

A=[A11A12A1nA21A22A2nAm1Am2Amn]

This is defined to be M(T,B,C), which is called the matrix representation of T w.r.t. the bases B and C.

The flipped diagonal

The reason for flipping the Aij's is purely convention at the moment. We'll see later that the matrix arithmetic makes more sense in this notation, so trust us for a moment.

Let's do an example. Let's consider the derivative map D:P4(R)P3(R). Let B={1,x,x2,x3,x4} and C={1,x,x2,x3}, so the standard bases for each of their respective sets. The definition above implies we should calculate the transformations into vectors of our W:

D(1)=0+0x+0x2+0x3D(x)=1+0x+0x2+0x3D(x2)=0+2x+0x2+0x3D(x3)=0+0x+3x2+0x3D(x4)=0+0x+0x2+4x3

So then our matrix is:

M(D,B,C)=[01000002000003000004]

Notice here in general, if the dim(V)=n and dim(W)=m then we get an Mm×n matrix.

Food for Thought

What if we knew that T(p(x))=p(x)+p(x)? Notice that T is still a linear map, and supposing that T:P3(R)P3(R). We know it's a M4×4 matrix, and we'll get:

M4×4=[1100012000130001]

Which notice that:

M(4×4)=M(D,B,C)+I4

This implies the following properties, where T1,T2L(V,W):

  1. M(T1+T2,B,C)=M(T1,B,C)+M(T2,B,C)
  2. M(αT1,B,C)=αM(T,B,C)

So M is a linear map!!! It's a linear map from L(V,W)FdimW,dimV.