Jordan Canonical Form II - Computation

We have an algorithm for computing the rational canonical form of a matrix. How about computing the Jordan canonical form? Well, there's at least a straightforward way to convert the rational canonical form to the Jordan canonical form.

Computing the Jordan blocks


To compute the Jordan canonical form for an n×n matrix A, we first compute the invariant factors a1(x),,am(x). For each invariant factor a(x), we factor a(x) completely into linear factors:

a(x)=(xλ1)α1(xλs)αs,

where the λi are the distinct roots. For this factor, the corresponding elementary divisors are (xλ1)α1,,(xλs)αs. We can then write down the corresponding Jordan blocks J1,,Js. Doing this for every invariant factor allows us to write down the Jordan canonical form J for A.

Computing the change-of-basis matrix


How about if we want to find a change-of-basis matrix Q such that Q1AQ=J? We can compute that, as well. First note that if vV is the F[x]-module generator for the summand corresponding to F[x]/a(x), then the elements

a(x)(xλ1)α1v,,a(x)(xλs)αsv

are F[x]-module generators for the summands corresponding to the quotients

F[x]/(xλ1)α1,,F[x]/(xλs)αs

To see why this is true, first note that for each i the polynomials (xλi)αi and a(x)(xλi)αi are relatively prime; the former is the annihilator of the summand F[x]/xλi)αi, while the latter is the annihilator of the complement of that summand in the invariant summand F[x]/a(x). As such, multiplication by a(x)(xλi)αi provides a surjective morphism F[x]/a(x)F[x]/(xλi)αi.

For each one of these summands, if w=a(x)(xλ)αv is the F[x]-module generator for the summand corresponding to F[x]/(xλ)α, then an F-vector space basis for that summand is

(AλIn)α1w,,(AλIn)w,w.

Note that the basis vectors have been listed in this order so that the corresponding matrix for T (on that summand) is the Jordan block, matching the way in which we chose the basis {(xλ)α1,,xλ,1} for F[x]/(xλ)α.

We can use this to algorithmically compute a change-of-basis matrix Q. We first compute an auxiliary matrix P just as we did for the rational canonical form. The nonzero columns of P correspond to vectors that generate the invariant factor summands as F[x]-modules. We can thus follow the recipe describe above, where v takes the role of a nonzero column of P. It's easiest to follow this through specific examples.

Examples


Example 1

Let A be the 3×3 matrix

[2214037002]

We have seen that the invariant factors of A are a1(x)=x2 and a2(x)=x25x+6=(x2)(x3). The elementary divisors of A are therefore x2, x2, x3, and so the Jordan canonical form is

J=[200020003]

For a change-of-basis matrix P, first recall an auxiliary matrix P for this matrix was

P=[071071010]

For the first nonzero column v1 of P (which is a Q[x]-module generator for the summand corresponding to the first invariant factor a1(x)=x2), we compute

w1=a1(x)(x2)v1=v1=[771].

Since the summand Q[x]/x2 is 1-dimensional, the single vector w1 is our Q-basis for that summand.

For the second nonzero column v2 of P (which is a Q[x]-module generator for the summand corresponding to the second invariant factor a2(x)=(x2)(x3)), we compute the projections of v2 into the two summands Q[x]/x2 and Q[x]/x3, respectively:

w2=a2(x)(x2)v2=(A3I)v2=(A3I)[110]=[100]w3=a2(x)(x3)v2=(A2I)v2=(A2I)[110]=[210]

Again, since each of those summands is 1-dimensional, these are our Q-bases for those two summands.

A change-of-basis matrix is then

Q=[712701100]

One can verify Q1AQ=J.

Example 2

Consider the 4×4 matrix

A=[1244214810120123]

We have seen that the invariant factors of this matrix are a1(x)=(x1)2, a2(x)=(x1)2. The elementary divisors of A are therefore (x1)2, (x1)2, and so the Jordan canonical form is

J=[1100010000110001]

An auxiliary matrix for A was

P=[0010000100000000]

The first nonzero column v1 of P is a Q[x]-module generator for the summand Q[x]/(x1)2. There is nothing to project here, since this summand does not decompose further. (In other words, the invariant factor a1(x)=(x1)2 is also an elementary divisor). That summand is 2-dimensional over Q, so we compute its Q-basis:

w1=(AI)1v1=[0210]w2=v1=[2101]

The second nonzero column v2 of P is a Q[x]-module generator for the second summand Q[x]/(x1)2. By the identical reasoning used for the previous summand, a Q-basis for this summand is then

w3=(AI)1v2=[2201]w4=v2=[0100]

Thus, a change-of-basis matrix Q is

Q=[0120202110000010]

Suggested next notes


Consider looking into some category theory.