Orthogonality: small idea, used everywhere
1. Vectors: orthogonal vs orthonormal
They are orthonormal if additionally each has length 1: \(\|u\|=\|v\|=1\).
Read \(u^\top v=0\) as: “u-transpose v equals zero”, i.e. “u dot v is zero”. Length is \(\|v\|^2=v^\top v\).
2. Matrices: \(Q\) is orthogonal if its columns are orthonormal
Read \(Q^\top Q=I\) as: “Q-transpose Q equals I”. Read \(Q^{-1}=Q^\top\) as: “Q-inverse is Q-transpose” — no elimination needed.
3. The theorem you keep using
This is why \(A^TA\) and \(AA^T\) in lesson 0002 give us orthonormal \(V\) and \(U\) for free. Symmetry manufactures orthogonality.
4. Concrete check (reuse from SVD)
Let \(Q=\begin{bmatrix}0.6&-0.8\\0.8&0.6\end{bmatrix}\) (the \(U\) from lesson 0002).
Columns \(q_1=[0.6,0.8]^T\), \(q_2=[-0.8,0.6]^T\): \(q_1^\top q_2=-0.48+0.48=0\), \(\|q_1\|=\|q_2\|=1\). So \(Q^\top Q=I\). Take \(x=[1,2]^T\): \(\|x\|^2=5\), \(Qx=[-1.0,2.0]^T\), \(\|Qx\|^2=1+4=5\). Length preserved.
5. If the professor says: “Prove it”
1Q preserves dot products
Say ► “Q-x transpose Q-y equals x-transpose Q-transpose Q y, which is x-transpose y since Q-transpose Q is I. Put y equal x to get norm Q-x equals norm x.”
2Symmetric eigenvectors are orthogonal
Say ► “Lambda-i times v-i transpose v-j equals S-v-i transpose v-j, which equals v-i transpose S v-j, which is lambda-j times v-i transpose v-j. Since lambda-i differs from lambda-j, v-i transpose v-j must be zero.”
If grilled: “Does orthogonal mean \(Q^\top=Q\)?” → No, it means \(Q^\top=Q^{-1}\). “Are rows orthonormal?” → Yes for square orthogonal \(Q\), since \(QQ^\top=I\) too.
6. Check yourself
Pick an answer — feedback is immediate. Answers matched in length so formatting gives no hints.
7. Go to the source
Strang §4.4 / §5.1 (Orthogonality, Orthogonal Matrices) or MIT 18.06 Lecture 14–15. Same two facts: \(Q^\top Q=I\) preserves geometry; symmetric matrices get orthonormal eigenvectors.
Prev: 0002 — SVD · 0001 — diagonalization