An augmented vector is simply a vector with additional components. In our context, when we represent 2D data points as [x, y], we're using 2D vectors. The "augmented" aspect comes when we stack all data points into a matrix for processing.
For a matrix A, if Av = λv (where v ≠0), then v is an eigenvector and λ is its eigenvalue. Eigenvectors show directions of maximum variance in data, while eigenvalues show how much variance exists in those directions.
Mean: [0.00, 0.00]
Data Points: 8
Process: Each point - mean = centered point
This centers the data around the origin (0,0)
Cov(X,Y) = Σ(xi - x̄)(yi - ȳ) / (n-1)
Where:
New coordinates = Original_centered × Eigenvector_matrix
X-axis = PC1 (most variance)
Y-axis = PC2 (remaining variance)
Each row is a data point (augmented vector):
X_centered = X - mean(X)
Mean: [0.000, 0.000]
Characteristic equation:
det(C - λI) = 0
λ² - 0.0000λ + 0.0000 = 0
PC1 (λ=0.000000):
Eigenvector: [0.000000, 0.000000]
PC2 (λ=0.000000):
Eigenvector: [0.000000, 0.000000]
C × v1 = λ1 × v1 ✓
C × v2 = λ2 × v2 ✓
v1 · v2 = 0.000000 (≈0, orthogonal)
Augmented Vectors: Our data points [x, y] are 2D vectors. When we arrange them in a matrix where each row is one observation, we create an "augmented" data matrix. This allows us to process multiple data points simultaneously.
Eigenvectors (Principal Components): These are special directions in the data space. The red line (PC1) points in the direction where data varies the most. The blue line (PC2) is perpendicular and shows the direction of remaining variance.
Eigenvalues: These numbers (λ1, λ2) tell us exactly how much variance exists along each eigenvector direction. Larger eigenvalue = more important direction. The ratio λ1/(λ1+λ2) shows the percentage of total variance captured by PC1.
PCA Transformation: We project each centered data point onto the principal component axes using the exact eigenvector coordinates. This rotates our coordinate system to align with the data's natural variation patterns.
X: [0.00, 0.00]
Y: [0.00, 0.00]
Cov(X,Y) = 0.0000
Correlation = 0.0000
Current Noise: 0%
Add noise to see how PCA handles real-world data