Principal Component Analysis (PCA / K-L Method) PCA is a dimensionality reduction technique that
transforms a dataset with n attributes into k new variables (k ≤ n) called principal components. Key
Idea: PCA projects data onto new orthogonal axes that capture maximum variance. Steps: 1.
Normalize data so all attributes are in the same range. 2. Compute orthonormal vectors (principal
components). 3. Sort components based on variance (importance). 4. Select top k components and
discard low-variance ones. Important Points: - Components are orthogonal and independent. - PCA
combines attributes instead of removing them. - Helps reveal hidden patterns and structures.
Advantages: - Reduces dimensionality - Improves performance - Removes redundancy
Disadvantages: - Hard to interpret - Possible information loss Conclusion: PCA reduces data size
while preserving important information by projecting data onto directions of maximum variance.