Computing Matrix, finding kernel and image

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
6 replies · 6K views
specialnlovin
Messages
19
Reaction score
0
Let T: R[x]2[tex]\rightarrow[/tex] R[x]3 be defined by T(P(x))=xP(x). Compute the matrix of x with respect to bases {1,x,x2} and {1,x,x2,x3}. Find the kernel and image of T.

I know how to do this when given bases without exponents, however I do not know exactly what this is saying and therefore am having a hard time starting it.
 
Physics news on Phys.org
Let's compute the first column.

You take the first basis element, that is 1. Now you'll have to express T(1)=x in terms of the basis {1,x,x²,x³}. That would be (0,1,0,0). So the first column would consist out of

[tex]\left(\begin{array}{ccc}<br /> 0 & ? & ? \\<br /> 1 & ? & ? \\<br /> 0 & ? & ? \\<br /> 0 & ? & ? <br /> \end{array} \right)[/tex]

Now for the second and third column, you'll have to express T(x) and T(x²) in terms of the basis {1,x,x²,x³}.
 
Okay so matrix T(x)=x2 and with respect to the basis {1,x,x²,x³} the second column would be (0,0,1,0), T(x2)=x3 and with respect to the basis {1,x,x²,x³} would be (0,0,0,1).
I would then say that
T=(0 0 0)
(1 0 0)
(0 1 0)
(0 0 1)
with respect to {1,x,x²,x³} right? Not with respect to {1,x,x²} and {1,x,x²,x³}
so then to find the im(T) I just use
(0 0 0)
(1 0 0)
(0 1 0)
(0 0 1)
and solve it with respect to the basis {1,x,x²,x³} right?
Then how would I go about solving for the ker(T)?
 
So, if (x,y,z) is in the kernel, then you must have

[tex] \left( \begin{array}{ccc}<br /> 0 & 0 & 0\\<br /> 1 & 0 & 0\\<br /> 0 & 1 & 0\\<br /> 0 & 0 & 1<br /> \end{array} \right) \left( \begin{array}{c}<br /> x\\<br /> y\\<br /> z<br /> \end{array} \right) = 0[/tex]

It's not hard to see that this can only be the case iff x=y=z=0
 
right, that just seemed way too easy I thought I was doing it wrong.
Then the im(T) is the span of e2, e3, and e4