deepdream of
          a sidewalk
Show Question
Math and science::Algebra

Product of eigenvalues and sum of eigenvalues

Let A be an N×N matrix. Then the following two statements are true.

The product of the N eigenvalues equals the determinant of A.

The product includes repeated eigenvalues.

The sum of the N eigenvalues equals the trace of A.


Product of eigenvalues equals the determinant.

Intuition followed by the angle of attack for a more formal justification.

Intuition

Consider the 2D case. The column space of A can be spanned by the two independent eigenvectors. Consider the quadrilateral formed by these two vectors. Applying A to the space will a stretch in volume of the space by a factor of det(A); the quadrilateral will grow in volume by a factor det(A). The two sides defining this quadrilateral don't rotate or skew under the A transformation, as they are eigenvectors—they only scale. And so the factor by which the quadrilateral grows must be decomposable into the two scaling factors by which each eigenvector grows.

Proof idea

A more formal justification is to express det(AλI) in terms of the N polynomial roots (always possible), then setting λ=0 we are left with det(A)=λ1λ2...λN.

det(AλI)=p(λ)=(1)n(λλ1)(λλ2)(λλn)=(1)(λλ1)(1)(λλ2)(1)(λλn)=(λ1λ)(λ2λ)(λnλ)

The trace equals the sum of eigenvalues.

For the 2D case, this can be shown easily through the quadratic formula.

Let:

A=[abcd]

and then observer that:

det(AλI)=0(aλ)(bλ)bc=0λ2λ(a+d)+adbc=0(λa+d2)2+adbc(a+d2)2=0λ=a+d2bcad+(a+d2)2.

The sum of these two eigenvalues will be the trace, a+d.

Some easy examples of the trace = sum of eigenvalues proposition.

A few forms of 2D matrices make it easy to see how their trace is the sum of eigenvalues. Some examples.

General observation

An observation is that adding [1001] only affects the diagonal [x..y].

A zero entry

When there is a zero entry, there are two ways to make a matrix singular by additions/subtractions of I:

  1. the "axis" column vector (only 1 non-zero value) falls to the origin, [0,0].
  2. the other column vector falls onto the axis of the "axis" column vector.
A=[1702]=[0701]+[1001](first eigenvalue)=[1700]+[2002](second eigenvalue)
The same deal with B:
B=[3011]

Symmetric matrices with equal diagonal

Symmetric matrices with the additional property that all diagonal entries are the same have simple eigenvalues, as the addition/subtraction of I acts the same on all columns.

C=[4114]=[1111]+[3003](first eigenvalue)=[1111]+[4004](second eigenvalue)