9.1710 min read
Classical PCA
The full Classical PCA pipeline: (1) Center: ; (2) form ; (3) compute SVD ; (4) choose ; (5) reconstruct: .
The formula projects the centered point onto the top- subspace, then adds the mean back. This is the best rank- affine approximation of the original data.
Formal View
Definition 9.6 — Classical PCA Reconstruction
For centered data and data mean , the Classical PCA rank- reconstruction of is
Why This Matters
Classical PCA is the standard dimensionality reduction method throughout science and engineering.
- Face recognition: project onto eigenfaces.
- Signal compression: project onto dominant PCA modes.
- Visualizing high-dimensional data in 2D.
Quiz
Question 1
The classical PCA reconstruction of is:
Question 2
If lies in , then .
Common Mistakes
- Forgetting to add the mean back after projection.
- Confusing the low-dimensional score with the reconstruction .