[[lecture-data]]
2024-09-11
Readings
Recall: complex numbers.
Let k = α + β i be a complex number. Then the complex conjugate is k ¯ = α − β i
(see complex conjugate )
Note that k 1 + k 2 ― = k 1 ― + k 2 ― in this case
Now, suppose we have a complex number in polar coordinates z = ρ e i θ . Then the complex conjugate is z ― = ρ e − i θ
Note that z 1 z 2 ― = z 1 ― ⋅ z 2 ― in this case
2. Chapter 2
Conjugate Transpose, Hermitian
Let A ∈ M m × n ( C ) . Define the conjugate transpose of A :
A ∗ = A T ― If A ∗ = A , then we call A hermitian
(see conjugate transpose , hermitian )
If A ∈ M m , n and B ∈ M n , p then ( A B ) T = B T A T and ( A B ) ∗ = B ∗ A ∗
Orthogonal, Orthonormal Vectors
If x , y ∈ C , then x ⊥ y or "x is orthogonal to y " means y ∗ x = 0 .
{ x 1 , … , x n } ⊂ C n "are orthogonal " means the x i are pairwise orthogonal. We say they are orthonormal if for all i , we have that x i ∗ x i = 1
(see orthogonal vectors )
A matrix U ∈ M n is called unitary precisely when U ∗ U = I .
ie, U is invertible
And its inverse is its conjugate transpose
If Q ∈ M n ( R ) , then Q is (real) orthogonal precisely when Q T Q = I
(see unitary matrices )
A matrix U ∈ M n is unitary if and only if the columns of U are orthonormal .
U unitary means that U ∗ U = I if and only if for all columns u k of U :
u i ∗ u j = { 1 if i = j 0 otherwise which means that the columns are 1) orthogonal and 2) normal
(see unitary matrices have orthonormal columns )
Unitary matrices form a group
If U ∈ M n is unitary , then U : C n → C n is an isometry . This means
∀ x ∈ C n , the length
| | U x | | 2 = ( U x ) ∗ U x = x ∗ U ∗ U x = | | x | | 2 $ $ T h a t i s , t h e t r a n s f o r m a t i o n p r e s e r v e s t h e l e n g t h o f a n y i n p u t v e c t o r . A d d i t i o n a l l y , f o r a n y p a i r o f v e c t o r s $ x , y ∈ C n $ w e h a v e $ $ | | U x − U y | | 2 = | | U ( x − y ) | | 2 = | | x − y | | 2 by the result immediately above, so the transformation also preserves pairwise distances between input vectors!
(see unitary matrices define isometries )
A , B ∈ M n are unitarily similar (or unitarily equivalent )means that there exists U ∈ M n unitary such that A = U B U ∗
This is a similar ity where the change of basis is a distance-preserving one.
(see unitarily similar )
"treat the matrix like a long euclidean vector"
| | A | | F = ∑ i , j | a i j | 2 (see frobenius norm )
Householder Transformation
Suppose we have w ∈ C n with | | w | | = 1 . The Householder transformation is given by
H w := I − 2 w w ∗ (see householder transformation )
H w is hermitian and unitary!
( I − 2 w w ∗ ) ( I − 2 w w ∗ ) = I − 4 w w ∗ + 4 w w ∗ w w ∗ = I − 4 w w ∗ + 4 w w ∗ = I
Given any unit vector x ∈ C n , there exists a unitary matrix U ∈ M n where the first column is x .
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 )
Let x , y ∈ R n such that x ≠ y but | | x | | = | | y | | . If we take w = x − y | | x − y | | , 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 … 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)