Lecture 07

[[lecture-data]]

2024-09-11

Readings

Recall: complex numbers.

Complex Conjugate

Let k=α+βi be a complex number. Then the complex conjugate is k¯=αβi

(see complex conjugate)

Note that k1+k2=k1+k2 in this case

Now, suppose we have a complex number in polar coordinates z=ρeiθ. Then the complex conjugate is z=ρeiθ

Note that z1z2=z1z2 in this case

2. Chapter 2

Conjugate Transpose, Hermitian

Let AMm×n(C). Define the conjugate transpose of A:

A=AT

If A=A, then we call A hermitian

(see conjugate transpose, hermitian)

Note

If AMm,n and BMn,p then (AB)T=BTAT and (AB)=BA

Length

The euclidean length of a vector z is

||z||(2)=zz

(see euclidean length of a vector)

Orthogonal, Orthonormal Vectors

If x,yC, then xy or "x is orthogonal to y" means yx=0.

{x1,,xn}Cn "are orthogonal" means the xi are pairwise orthogonal. We say they are orthonormal if for all i, we have that xixi=1

(see orthogonal vectors)

Unitary

A matrix UMn is called unitary precisely when UU=I.

  • ie, U is invertible
  • And its inverse is its conjugate transpose

If QMn(R), then Q is (real) orthogonal precisely when QTQ=I

(see unitary matrices)

Note

A matrix UMn is unitary if and only if the columns of U are orthonormal.

(see unitary matrices have orthonormal columns)

Note

If U,VMn are unitary,then UV is unitary.

(see the product of unitary matrices is unitary)

Fact

Unitary matrices form a group

Note

If UMn is unitary, then U:CnCn is an isometry. This means
xCn, the length

||Ux||2=(Ux)Ux=xUUx=||x||2$$Thatis,thetransformationpreservesthelengthofanyinputvector.Additionally,foranypairofvectors$x,yCn$wehave$$||UxUy||2=||U(xy)||2=||xy||2

by the result immediately above, so the transformation also preserves pairwise distances between input vectors!

(see unitary matrices define isometries)

Unitarily Similar

A,BMn are unitarily similar (or unitarily equivalent)means that there exists UMn unitary such that A=UBU

This is a similarity where the change of basis is a distance-preserving one.

(see unitarily similar)

Frobenius Norm

"treat the matrix like a long euclidean vector"

||A||F=i,j|aij|2

(see frobenius norm)

Note

Suppose A,B are unitarily similar. Then ||A||F=||B||F

(see unitarily similar matrices have the same frobenius norm)

Householder Transformation

Suppose we have wCn with ||w||=1. The Householder transformation is given by

Hw:=I2ww

(see householder transformation)

Hw is hermitian and unitary!

(I2ww)(I2ww)=I4ww+4wwww=I4ww+4ww=I
Note

Given any unit vector xCn, there exists a unitary matrix UMn where the first column is x.

Proof

Gram-Schmidt: start with the first column x and any orthonormal basis for the rest of the matrix.

(see we can find a unitary matrix for any unit vector)

Note

Let x,yRn such that xy but ||x||=||y||. If we take w=xy||xy||, then Hwx=y and Hwy=x

if x is real, then $$Hx = \begin{bmatrix}
1 \
0 \
\vdots \
0
\end{bmatrix}$$ use the unitary matrix U=I. Otherwise, take U=Hw such that Hw[1000]T=x and use $$w = \frac{1}{\lvert \lvert \begin{bmatrix}
1 \
0 \
\vdots \
0
\end{bmatrix} - x \rvert \rvert_{2} } \left(\begin{bmatrix}
1 \
0 \
\vdots \
0
\end{bmatrix} - x\right)$$

central result for chapter 2: Schur's Theorem (next lecture)