This is a problem nearly identical to the 2nd problem in this thread. Since I'm still kind of sure about the material, I'd like my work checked here as well.
T(1,0,0) = (3,-1,0)
T(0,1,0) = (0,1,0)
T(0,0,1) = (-1,2,4)
Thus, we have the matrix,
\left| \begin{array}{ccc}<br />
3 &0&-1 \\<br />
-1&1&2 \\<br />
0&0&4 \end{array} \right|
Δ_T (t) = det( \left| \begin{array}{ccc}<br />
3 &0&-1 \\<br />
-1&1&2 \\<br />
0&0&4 \end{array} \right| - tI)
I have this equaling: -(t-4)(t-3)(t-1), which is the characteristic polynomial. The roots are the eigenvalues, which are 4,3,1.
To compute the eigenvectors:
When t=4, we have,
-x-z=0
-x-3y+2z=0
0z=0
Which implies that eigenvectors are multiples of (-1,1,1).
When t=3, we have,
-z=0
-x-2y=0
z=0
Which implies that eigenvectors are multiples of (-1,2,0)
When t=1, we have,
2x-z=0
-x+2z=0
3z=0
Which implies that eigenvectors are multiples of (0,1,0).
T is diagonizable because (-1,1,1),(-1,2,0),(0,1,0) are lin. indep.
I'm still unsure if the eigenspace is the span of the eigenvectors. If so, I guess R3, otherwise, I'm not sure.