Lecture 08

[[lecture-data]]

2024-09-13

Readings

2. Chapter 2

primarily about Schur's theorem

Schur's Theorem

Suppose AMn has eigenvalues λ1,λ2,λn in any order. Then there exists a unitary matrix U and upper triangular matrix T such that

A=UTU

ie, for any square matrix, you can find a unitary similarity to an upper triangular matrix. Since AT and T upper triangular, we can set the diagonal of T to be exactly λ1,λ2,λn

Additionally, if A is real-valued and the eigenvalues of A are all real, then U and T can be found to be real-valued.
(see Schur's theorem)

Proof

Let x be a normalized eigenvector with eigenvalue λ1 and let UMn be a unitary such that x is the first column.
(last time Lecture 07, we talked about being able to find such a U)

Then $$\begin{aligned}
U^AU &= \begin{bmatrix}
x^
\
u_{2}^* \
\dots \
u_{n}^*
\end{bmatrix} A \begin{bmatrix}
x & u_{2} & \dots & u_{n}
\end{bmatrix} \
&= \begin{bmatrix}
\lambda_{1} & * & \dots & * \
0 & \
\vdots & \text{"B"}\
0
\end{bmatrix}
\end{aligned}$$

So σ(B)={λ2,λn} and we can repeat this process:

Take y be a normalized eigenvector associated with eigenvalue λ2 of B and let VMn1 be unitary with first column y.

Then

(U[I100V])A(U[I100V])=[I00V]UAU[I00V]=[λ10VBV]=[λ10λ2"C"00]

and σ(C)={λ3,,λn}

Continuing this process, we get a unitary matrix which is the product of each of the unitary matrices that we found to get ΩAΩ=T upper triangular, where each of the entries of the diagonal of T are exactly the eigenvalues of A. And this is the Schur Decomposition

Additionally, if A is real and all the eigenvalues are real, then all steps can be done over R

Theorem

Suppose F Mn are pairwise commuting. Then they are simultaneously unitarily upper triangularizable.

(see pairwise commuting matrices are simultaneously upper triangularizable)

Proposition

If A,BMn commute, then there exists a bijection π:{1,,n}{1,,n} such that

σ(A+B)={λi(A)+λπ(i)(B):i=1,,n}σ(AB)={λi(A)λπ(i)(B):i=1,,n}
Proof

Since A and B commute, we can say A=UTAU and B=UTBU where UMn unitary and TA,TBMn upper triangular. Then

A+B=UTAU+UTBU=U(TA+TB)UAB=UTAUUTBU=U[TATB]U

Then, let π be the bijection that maps the (* * * * )

Matrix Polynomial

Suppose we have a complex-valued polynomial

p(t)=amtm+am1tm1++a0=am(tλ1)(tλ2)(tλm)

Then for any AMn any matrix, define the matrix polynomial

p(A):=amAm+am1Am1++a0I=am(Aλ1I)(Aλ2I)(AλmI)

(see matrix polynomial)

Suppose A=UTU. Then

Ak=UTUUTUUTU=UTkU$$where$Tk$isuppertriangularwithdiagonalterms$tiik$.Thus,foramatrixpolynomial,wehave$$p(A)=U[p(T)]U=U[p(t11)0p(t22)00p(tnn)]U

and we can say that σ(p(A))={p(λ):λσ(A)}

Theorem

Every matrix is upper triangularizable

going back to householder transformation things.

Say wFn is unit length ww=1. What are the eigenvalues and eigenvectors of ww ?

So 2ww has eigenvalues of ww multiplied by 2 with same eigenvectors
And I2ww has the eigenvalues 12(σ(A))

Suppose x,yRn with xy and ||x||2=||y||2 and define w:=1||xy||(xy). Now, note that (x+y)T(xy)=xTxyTy+xyxTy=0
xyspan(w) is an eigenvector of ww with eigenvalue 1
x+yw is an eigenvector of ww with eigenvalue +1

Writing

Hwx=y and Hwy=x

(ie, we are "flipping" about an axis)