Find the matrix #A# for the linear transformation #T# relative to the bases #B = {1,x,x^2}# and #B' = {1,x,x^2,x^3}# such that #T(vecx) = Avecx#?

Let #T:P^2 |-> P^3# given by #4x*vecp# be a linear transformation. (I'm guessing #vecp# is a vector of polynomial terms?)

I couldn't follow my professor in class when he did linear transformations involving nonstandard bases, because the notation was confusing... So I'm really not sure how to do this.

1 Answer
Apr 27, 2016

#A = [(0,0,0),(4,0,0),(0,4,0),(0,0,4)]#

Explanation:

The idea behind the notation of using #vec(p)# as both a vector and a polynomial is that when your vector space is #P^n#, your vectors are polynomials. Just as in #RR^2#, for example, you can consider a vector #(a,b)# as being the sum #a(1,0) + b(0,1)#, you can think of the analogs in #P^1# as being #(a,b)# and #a*1+bx#, where both vectors are being written in terms of the standard bases #{(1,0),(0,1)}# or #{1,x}#.

You can have a nonstandard basis in #RR^2#, such as #B'={(1,1),(-1,1)}#, as long as the vectors are linearly independent. If we write a vector in terms of that basis, such as #(a,b)_(B')#, then we should think of it as being the linear combination #a(1,1)+b(-1,1)# which would have the representation #(a-b,a+b)# in the standard basis.

Similarly, you can have nonstandard bases in #P^n#, or in any vector space for that matter. One simply must remember that a vector in a given basis is a linear combination of the elements of that basis.

While this problem uses the standard bases for #P^2# and #P^3#, we will instead treat them as if they are arbitrary bases, using the relabelings #B = {1, x, x^2} = {vec(u_0), vec(u_1), vec(u_2)}# and #B' = {1, x, x^2, x^3} = {vec(v_0), vec(v_1), vec(v_2), vec(v_3)}#.

For the problem itself, when we wish to find the matrix representation of a given transformation, all we need to do is see how the transformation acts on each member of the original basis and put that in terms of the target basis. The resulting vectors will be the column vectors of the matrix.


First, we see how #T# acts on the members of #B#, and put that in terms of #B'#:

#T(vec(u_0)) = 4x = 4vec(v_1)=[(0),(4),(0),(0)]_(B')#
#T(vec(u_1)) = 4x^2 = 4vec(v_2)=[(0),(0),(4),(0)]_(B')#
#T(vec(u_2)) = 4x^3 = 4vec(v_3)=[(0),(0),(0),(4)]_(B')#

Then we use those as the column vectors for our transformation matrix:

#A = [(0,0,0),(4,0,0),(0,4,0),(0,0,4)]#

Let's check to see if it works.

Given a polynomial #vecp = [(a),(b),(c)]_B = a+bx+cx^2 in P^2# we have

#T(vecp) = 4x(a+bx+cx^2)#

#=4ax+4bx^2+4cx^3#

#=0vec(v_0)+4avec(v_1)+4bvec(v_2)+4cvec(v_3)#

#=[(0),(4a),(4b),(4c)]_(B')#

#=[(0,0,0),(4,0,0),(0,4,0),(0,0,4)][(a),(b),(c)]_B#

#=Avec(p)#