Lecture 09

[[lecture-data]]

2024-09-16

Readings

2. Chapter 2

Note

Suppose I have two [k+(nk)]×[k+(nk)] block matrices

[00T][D10D2]=[0|[00]0|[00]]=[00T]

Where T is upper triangular and each Di is diagonal. Then the resulting matrix is [(k+1)+(n(k+1))]×[(k+1)+(n(k+1))] with T also upper triangular.

Cayley-Hamilton

Let AMn. Then pA(A)=0

Note

This is a homework problem for diagonalizable matrices, but you are going to do it using the tools that you already have.

(see Cayley-Hamilton)

Proof

Let A=UTU where UMn is unitary and TMn upper triangular per Schur's theorem. Say that we have characteristic polynomial

pA(t)=(tλ1)(tλ2)(tλn)

Such that tii=λi. Now, we have from our definition of the matrix polynomial

pA(A)=UpA(T)U=U[(Tλ1I)(Tλ2I)(TλnI)]U=U[0000][0000][0000]U=U[0]U=0
Corrolary

Suppose AMn is invertible and

pA(t)=tn+an1tn1++a0

Then

A1=(1)n+1detA[An1+an1An2+an2An3++a1I]
Proof

A invertible detA0 and detA=(1)na0. By Cayley-Hamilton, we have

A[An1+an1An2+an2An3++a1I]+a0I=0A[An1+an1An2+an2An3++a1I]=a0IA[1a0[An1+an1An2+an2An3++a1I]]=I[1a0[An1+an1An2+an2An3++a1I]]=A1

(see matrices are polynomials of their inverses)

Theorem

Suppose AMn. Then ϵ>0, there exists SMn invertible and DMn diagonal, and EMn with ||E||F<ϵ such that A=S(D+E)S1

"A is almost similar to a diagonal matrix"

Proof

Let A=UTU where UMn unitary, TMn upper triangular per Schur. For all δ>0, we can define

Q=[δ1000δ2000δn]T[δ1000δ2000δn]

and Q will have ijth entry equal to tijδji

A=UTU=UITIU=U[δ1000δ2000δn][δ1000δ2000δn]T[δ1000δ2000δn][δ1000δ2000δn]U=U[δ1000δ2000δn]Q[δ1000δ2000δn]U=SQS1

Where $$ S = U\begin{bmatrix}
\delta^{-1} & 0 & \dots & 0 \
0 & \delta^{-2} & \ddots & \vdots \
\vdots & \ddots & \ddots & 0 \
0 & \dots & 0 & \delta^{-n}
\end{bmatrix}$$
Note that $$Q = \begin{bmatrix}
t_{11} & 0 & \dots & 0 \
0 & t_{22} & \ddots & \vdots \
\vdots & \ddots & \ddots & 0 \
0 & \dots & 0 & t_{nn}
\end{bmatrix} + \cal{O}(\delta)$$
Which is what was to be shown.

(see matrices are almost similar to diagonal matrices)

Theorem

Let AMn. Then for all ϵ>0, there exists EMn such that ||E||F<ϵ and A+E is diagonalizable

"every matrix is almost diagonalizable"

Caution

This is similar to the last result, but NOT THE SAME.

Proof

Let AMn=UTU by Schur. Then there exists a diagonal matrix D such that ||D||F<ϵ and T+D has distinct diagonals. Then

A+UDU=UTU+UDU=UTU+UDU=U(T+D)U

and this has all eigenvalues distinct by construction, and thus is diagonalizable! So let E=UDU. Then since U is unitary ||E||F=||D||F<ϵ

(see matrices are almost diagonalizable)

Last main topic of Chapter 2: Normal Matrices

Normal Matrices

AMn is normal precisely when AA=AA

Example

  1. diagonal matrices
  2. hermitian matrices (duh)
  3. unitary matrices

(see normal matrix)

Lemma

Let TMn be upper triangular. Then T is normal if and only if T is diagonal.

Proof (informal)

Suppose T is normal upper triangular. Then TT=TT since it is normal.

TT=TT[r1r2rn][|||r1r2rn|||]=[|||c1c2cn|||][c1c2cn]

Where ti are increasing in "nonzero length"

Then the ith diagonal of TT, call it [TT]ii=cici=||ci||2 where ti is the ithe COLUMN of T

And the ith diagonal of TT, call it [TT]ii=riri=||ri||2 where ri is the ith ROW of T (this is why we can do the multiplication like this to get a scalar)

So looking at T, we know that the ith column and the ith row must have the same length.

  • So for the first column, the length will be the first element. Which means the other elements of the first row must be zero.
  • if we continue in the same manner through the rest of the matrix, we realize that the rest of the non-diagonal elements must be 0 also.

(see triangular matrices are normal iff diagonal)