Processing math: 100%
Skip to main content

Section 43.4 Examples

Subsection 43.4.1 Kernel and image of a matrix transformation

Example 43.4.1.

Using matrix

A=[102275173161021422213],

create the matrix transformation TA:R5R4 by defining TA(x)=Ax, as usual. The RREF of A is

[10201013020001300000].

(This is the same RREF as in Discovery 43.1.a and Discovery 43.4.c.)

To determine a basis for kerTA, we solve the homogeneous system Ax=0. The RREF indicates that we should assign parameters to variables x3 and x5. This assignment of parameters leads to general solution

[x1x2x3x4x5]=[2s+t3s2ts3tt]=s[23100]+t[12031],

and so

kerTA=Span{[23100],[12031]}.

To determine a basis of imTA, we need to determine a basis for the column space of A, which can be carried out using Procedure 21.3.2. We have already reduced A to RREF above, so identifying leading ones in the first, second, and fourth columns of RREF(A) leads to

imTA=Span{[1512],[0102],[2311]}.

Finally, notice that

dim(kerTA)+dim(imTA)=2+3=5,

the number of columns of A, as expected.

Subsection 43.4.2 Kernel and image of a linear transformation

Example 43.4.2. Symmetric and skew-symmetric matrices.

Consider T:M2(R)M2(R) by

T(A)=AAT,

as considered in Discovery 43.2.a and Discovery 43.3.b. In those discovery activities, we identified the kernel as consisting of symmetric matrices. In the 2×2 case, an arbitrary symmetric matrix is of the form

[abbd]=a[1000]+b[0110]+d[0001],

so that

kerT=Span{[1000],[0110],[0001]}.

In the notation of Procedure 43.3.1, we take

K={[1000],[0110],[0001]}.

Since dim(M2(R))=4, we only need one more vector to enlarge to a basis for the domain space M2(R). The standard basis vector

[0100]

is not symmetric, and so does not lie in kerT. Therefore, taking

K={[0100]},

the vectors in K and K together form a basis for M2(R). To obtain a basis for imT, just apply T to the vector in K:

T([0100])=[0100][0010]=[0110],

so that

imT=SpanT(K)=Span{[0110]}.

Notice that imT consists of the skew-symmetric 2×2 matrices, defined by the “skewed” symmetry condition AT=A.

And also notice that

dim(kerT)+dim(imT)=3+1=4=dim(M2(R)),

as expected.

Example 43.4.3. Left multiplication of 2×2 matrices.

Consider LB:M2(R)M2(R) defined by LB(A)=BA, where

B=[1100],

as in Discovery 43.3.c. An arbitray 2×2 matrix

[abcd]

is in kerLB when

LB([abcd])=[1100][abcd]=[a+cb+d00]=[0000],

which occurs when c=a and d=b. Inserting these two conditions into the arbitrary matrix above, we have

[abab]=a[1010]+b[0101],

so that

kerLB=Span{[1010],[0101]}.

In the notation of Procedure 43.3.1, we take

K={[1010],[0101]}.

Since dim(M2(R))=4, we need two more vectors to enlarge to a basis for the domain space M2(R). Neither of the standard basis vectors

[0010],[0001]

is in kerT, and the four vectors in K and

K={[0010],[0001]}

remain independent when taken all together, and so form a basis for the domain space M2(R). Putting each of the vectors in K through LB, we get

LB([0010])=[1100][0010]=[1000],LB([0001])=[1100][0001]=[0100],

so that

imLB=Span{[1000],[0100]}.

This agrees with our earlier calculation of arbitrary input result

LB([abcd])=[a+cb+d00]=[ef00]=e[1000]+f[0100],

where we have replaced the top two entries in the result first result with new arbitrary entries e,f to emphasize that these entries are independently arbitrary through choice of a,c values versus b,d values.

And, once again, we have

dim(kerLB)+dim(imLB)=2+2=4=dim(M2(R)),

as expected.

Example 43.4.4. Differentiation of polynomials.

Consider ddx:Pn(R)Pn(R) by ddx(p(x))=p(x). For simplicity, write D in place of the differential operator ddx.

Similarly to Discovery 43.2.c, kerD consists of the constant polynomials, so that

kerD=Span{1}.

In the notation of Procedure 43.3.1, we take

K={1}

as a basis for kerD. It is straightforward to enlarge this to a basis for the domain space Pn(R), as the constant polynomial 1 is the first vector in the standard basis

{1,x,x2,,xn}.

So we may take

K={x,x2,,xn},

and differentiate each of these vectors to get

D(K)={1,2x,3x2,,nxn1}.

So we have

imD=Span{1,2x,3x2,,nxn1}.

But since scalar multiples do not affect linear independence, we could instead take

imD=Span{1,x,x2,,xn1}=Pn1(R).

This result should not be surprising, as our knowledge of antidifferentiation leads us to expect that every polynomial in Pn1(R) is the derivative of at least one polynomial in Pn(R).

And, yet again, we have

dim(kerD)+dim(imD)=1+(n1)=n=dim(Pn(R)),

as expected.

Subsection 43.4.3 Special examples

Let's look back at some of the examples from Subsection 42.3.5.

Example 43.4.5. Kernel and image of a zero transformation.

Consider 0V,W:VW defined by 0V,W(v)=0W for all v in the domain space V, where 0W is the zero vector in the codomain space W. Then clearly

ker0V,W=V,im0V,W={0W},

and we have

dim(ker0V,W)+dim(im0V,W)=dimV+0=dimV,

as expected.

Example 43.4.6. Kernel and image of an identity operator.

Consider IV:VV defined by IV(v)=v for all v in V. Then clearly

kerIV={0},imIV=V,

and we have

dim(kerIV)+dim(imIV)=0+dimV=dimV,

as expected.

Example 43.4.7. Kernel and image of a coordinate map.

For finite-dimensional space V with basis B, consider CB:VRn or CB:VCn, depending on whether V is a real or complex space, where

CB(v)=[v]B

for each v in V. Since coordinate vectors are unique (Theorem 19.5.3), the only vector in kerCB is the zero vector. And since every column vector of scalars can be traced back to a vector in V by using those scalars as coefficients in a linear combination, as in

x=[x1xn]v=x1v1++vn

(where the vj are the basis vectors in B), we must have imCB equal to Rn or Cn, as appropriate.

Example 43.4.8. Kernel and image of pairing with a fixed vector.

Suppose that V is a finite-dimensional inner product space, and u0 is a fixed choice of (nonzero) vector in V. Let Tu0:VR1 represent the linear transformation defined by pairing with u0:

Tu0(x)=x,u0

for all x in V.

Then to be in kerTu0, a vector x must be orthogonal to u0. This implies that kerTu0=U for U=Span{u0}.

On the one hand, we know that

dimU+dimU=dimV,

since a subspace and its orthogonal complement always form a complete set of independent subspaces of an inner product space (Theorem 37.5.16). On the other hand, the Dimension Theorem says that

dim(imTu0)+dim(kerTu0)=dimV.

From kerTu0=U, we may conclude that

dim(imTu0)=dimU=dim(Span{u0})=1.

But imTu0 is a subspace of the codomain space R1, which itself has dimension 1, so we must have imTu0=R1.