All eigenvalues zero => zero map

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
10 replies · 11K views
noospace
Messages
69
Reaction score
0
I want to prove that if all the eigenvalues of a linear transformation T : V --> V are zero, then T = 0. I think this is obvious but I'm having difficulty putting it into words.

If all the eigenvalues of T are zero, then there exists a basis B for V in which [itex][T]_B[/itex] is the zero matrix. Thus [itex][T(v)]_B=[T]^B_B[v]_B = 0\; \forall v \in V[/itex].

I think I should show that the matrix representation of T in an arbitrary basis D is zero. We have from second year linear algebra [itex][id]^B_D [T]^B_B [id]^D_B = [T]^D_D[/itex].
Thus

[itex][T(v)]_D = [T]^D_D [v]_D = [id]^B_D [T]^B_B [id]^D_B [v]_B = 0[v]_D = 0[/itex].

But [itex]v \in V[/itex] is abritrary so [itex][T]^D_D [v]_D = 0 \; \forall [v]_D \in \mathbb{F}^n[/itex] where [itex]\mathbb{F}[/itex] is the base field. Hence T = 0.

Is this correct?
 
Last edited:
Physics news on Phys.org
noospace said:
I want to prove that if all the eigenvalues of a linear transformation T : V --> V are zero, then T = 0.
This is not a theorem! There are at least two ways this can fail:

This matrix over the reals has only one eigenvalue, 0. (It has 3 over the complexes, of course)
[tex] \left(<br /> \begin{array}{ccc}<br /> 0 & 0 & 0 \\<br /> 0 & 0 & -1 \\<br /> 0 & 1 & 0<br /> \end{array}<br /> \right)[/tex]

This matrix over any field has only one eigenvalue, 0, of (algebraic) multiplicity 2.
[tex] \left(<br /> \begin{array}{cc}<br /> 0 & 1 \\<br /> 0 & 0<br /> \end{array}<br /> \right)[/tex]
 
Last edited:
By the way, you don't have to deal with that "arbitrary basis" stuff.

The zero linear transformation from V to W is the linear transformation such that, for every v in V,
Tv = 0.​

If you can find a basis so that the coordinate representation of T is the zero matrix, then it's easy to show that T is the zero transformation.

(Recall that two functions f and g are equal if and only if f(x) = g(x) for every input x)
 
Last edited:
noospace said:
[itex][T]^D_D [v]_D = [id]^B_D [T]^B_B [id]^D_B [v]_B[/itex]
That doesn't look right: [itex][v]_D[/itex] and [itex][v]_B[/itex] are usually different.

Oh, but I think it's just a typo, because you switched back to [itex][v]_D[/itex] in the next expression.


You could have done the basis calculation in a shorter way:
[tex] [T(v)]_D = [id]_D^B [T(v)]_B = [id]_D^B 0 = 0.[/tex]
Other than your typo, I think you did the basis manipulations correctly.
 
Last edited:
Hi Hurkyl,

You're right, my theorem is a little bit too general.

Let T be an Hermitian linear operator.

Now I think it's okay.

And yes, that's a typo.

Btw, I don't see any other "easy" way to the proof based on what you said about equal functions.
 
(caveat: this is only for finite-dimensional linear algebra. I'm not sure what generalizes properly to infinite dimensions)


That sounds fine; Hermitian matrices are diagonalizable over the reals, and I believe that is sufficient to prove your theorem. (BTW, you can do the proof by working directly with the diagonalized form!)
 
noospace said:
Btw, I don't see any other "easy" way to the proof based on what you said about equal functions.

Starting from
For every v, [itex][T(v)]_B = 0 = [0]_B[/itex]​
it follows that
For every v, T(v) = 0
and thus
T = 0.​
 
Yeah, but to get from assumption to therefore you need what I said right? Like l said it's obvious.
 
noospace said:
Yeah, but to get from assumption to therefore you need what I said right? Like l said it's obvious.
It follows simply because the coordinate representation is faithful:
[tex]v = w \text{\ if and only if\ } [v]_B = [w]_B.[/tex]
Of course, your way is correct too.
 
Hurkyl said:
(BTW, you can do the proof by working directly with the diagonalized form!)
*bonks self* I just realized this is exactly what you are doing when you said you could find a basis relative to which T's coordiante representation is the zero matrix!
 
Right, like saying [itex][\cdot]_B: V \to \mathbb{F}^n[/itex] is injective. Thanks.