Orthonormal Bases (Part 3)
Based on Linear Algebra Done Right by Sheldon Axler
This post covers the concept of Orthonormal Bases, the Gram-Schmidt procedure, and important theorems like Schur's Theorem and the Riesz Representation Theorem.
(Assumption: $V$ denotes an inner product space over $F$, where $F$ is $\mathbf{R}$ or $\mathbf{C}$.)
1. Orthonormal Lists
Definition
A list of vectors in $V$ is called orthonormal if:
- Each vector has norm 1.
- Each vector is orthogonal to all other vectors in the list.
Mathematically, a list $e_1, \dots, e_m$ is orthonormal if:
$$ \langle e_j, e_k \rangle = \begin{cases} 1 & \text{if } j = k \\ 0 & \text{if } j \ne k \end{cases} $$Key Properties
1. Norm of a Linear Combination:
If $e_1, \dots, e_m$ is an orthonormal list, then for any scalars $a_1, \dots, a_m$:
2. Linear Independence:
Every orthonormal list of vectors is linearly independent.
2. Orthonormal Bases
An orthonormal basis of $V$ is an orthonormal list of vectors that is also a basis of $V$.
Why are they important?
Orthonormal bases make finding coefficients in a linear combination extremely simple.
If $e_1, \dots, e_n$ is an orthonormal basis of $V$ and $v \in V$, then:
$$ v = \langle v, e_1 \rangle e_1 + \dots + \langle v, e_n \rangle e_n $$And the norm of $v$ is given by:
$$ \|v\|^2 = |\langle v, e_1 \rangle|^2 + \dots + |\langle v, e_n \rangle|^2 $$This means the coefficient of each basis vector is simply the inner product of the vector $v$ with that basis vector.
3. Gram-Schmidt Procedure
This is a standard algorithm for turning any linearly independent list into an orthonormal list with the same span.
- Input: A linearly independent list $v_1, \dots, v_m$.
- Output: An orthonormal list $e_1, \dots, e_m$ such that: $$ \operatorname{span}(v_1, \dots, v_j) = \operatorname{span}(e_1, \dots, e_j) \quad \text{for } j=1, \dots, m $$
Existence Theorems
Using the Gram-Schmidt procedure, we can prove:
- Every finite-dimensional inner product space has an orthonormal basis.
- Every orthonormal list of vectors in $V$ can be extended to an orthonormal basis of $V$.
4. Advanced Theorems
Schur's Theorem
Suppose $V$ is a finite-dimensional complex inner product space and $T \in \mathcal{L}(V)$. Then $T$ has an upper-triangular matrix with respect to some orthonormal basis of $V$.
Riesz Representation Theorem
Suppose $V$ is finite-dimensional. Then for every linear functional $\varphi$ on $V$ (a linear map from $V$ to $F$), there exists a unique vector $u \in V$ such that:
$$ \varphi(w) = \langle w, u \rangle $$for every $w \in V$.
This concludes the video on orthonormal bases.
'수리과학 > Linear Algebra' 카테고리의 다른 글
| [LA] 텐서(다중 선형 사상), 힐베르트 공간(내적 공간의 확장), 군론(행렬군 표현) (0) | 2025.12.22 |
|---|---|
| [Axler] Inner Product and Norm (0) | 2025.12.13 |
| [Axler] Eigenvalues, Invariant Subspaces, Diagonal Matrix (0) | 2025.12.12 |
| [Axler] The Existence of Eigenvalue (0) | 2025.12.12 |
| [Axler] The Fundamental Theorem of Algebra (0) | 2025.12.12 |