Lecture 07

[[lecture-data]]

2024-09-11

Readings

  • a
 

Recall: complex numbers.

Complex Conjugate

Let be a complex number. Then the complex conjugate is

(see complex conjugate)

Note that in this case

Now, suppose we have a complex number in polar coordinates . Then the complex conjugate is

Note that in this case

2. Chapter 2

Conjugate Transpose, Hermitian

Let . Define the conjugate transpose of :

If , then we call hermitian

(see conjugate transpose, hermitian)

Note

If and then and

Length

The euclidean length of a vector is

(see euclidean length of a vector)

Orthogonal, Orthonormal Vectors

If , then or ” is orthogonal to ” means .

“are orthogonal” means the are pairwise orthogonal. We say they are orthonormal if for all , we have that

(see orthogonal vectors)

Unitary

A matrix is called unitary precisely when .

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

If , then is (real) orthogonal precisely when

(see unitary matrices)

Note

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

1 ;;\text{ if } i=j \ 0 ;;\text{ otherwise} \end{cases}$$

which means that the columns are 1) orthogonal and 2) normal

(see unitary matrices have orthonormal columns)

Note

If are unitary,then is unitary.

(see the product of unitary matrices is unitary)

Fact

Unitary matrices form a group

Note

If is unitary, then is an isometry. This means , the length That is, the transformation preserves the length of any input vector.

Additionally, for any pair of vectors we have by the result immediately above, so the transformation also preserves pairwise distances between input vectors!

(see unitary matrices define isometries)

Unitarily Similar

are unitarily similar (or unitarily equivalent)means that there exists unitary such that

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”

(see frobenius norm)

Note

Suppose are unitarily similar. Then

\lvert \lvert A \rvert \rvert _{F}^2 &= \mathrm{Tr}(A^A) \ &= \mathrm{Tr}((UBU^)^UBU^) \ &= \mathrm{Tr}(UB^*U^UBU^) \ &= \mathrm{Tr}(UB^BU^) \ & = \mathrm{Tr}(U^*UB^*B) \ &= \mathrm{Tr}(B^*B) &= \lvert \lvert B \rvert \rvert _{F}^2 \end{aligned}$$

(see unitarily similar matrices have the same frobenius norm)

Householder Transformation

Suppose we have with . The Householder transformation is given by

(see householder transformation)

is hermitian and unitary!

(I-2ww^*)(I-2ww^*) &= I-4ww^*+4ww^*ww^* \\ &= I - 4ww^* + 4ww^* \\ &= I \end{aligned}$$ >[!theorem] Note > >Given any unit vector $x \in \mathbb{C}^n$, there exists a unitary matrix $U \in M_{n}$ 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 [[Concept Wiki/we can find a unitary matrix for any unit vector]]) >[!theorem] Note > >Let $x,y \in \mathbb{R}^n$ such that $x \neq y$ but $\lvert \lvert x \rvert \rvert = \lvert \lvert y \rvert \rvert$. If we take $w = \frac{x-y}{\lvert \lvert x-y \rvert \rvert}$, then $H_{w}x = y$ and $H_{w}y = x$ if $x$ is real, then $$Hx = \begin{bmatrix} 1 \\ 0 \\ \vdots \\ 0 \end{bmatrix}$$ use the unitary matrix $U=I$. Otherwise, take $U=H_{w}$ such that $H_{w}[1 \;0\;0 \dots{0}]^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)