A reserving analyst hands you a development triangle with 12 age-to-age factors per accident year and asks which two synthetic factors capture the bulk of the systematic movement. PCA answers exactly that question.
Why PCA exists. When you have correlated predictors, much of their joint variation lives in a lower-dimensional subspace. PCA finds the orthogonal directions that capture variance in decreasing order, giving you uncorrelated synthetic predictors ranked by informativeness.
Let be the data matrix with rows . PCA requires column-centered data:
If columns are on different units (dollars and counts, say), also divide by the sample standard deviation. This is equivalent to running PCA on the correlation matrix rather than the covariance matrix.
DECISION: Mixed units or wildly different variances ⇒ standardize (use correlation). All variables on the same comparable scale ⇒ raw covariance is fine.
The first loading vector is the unit vector that maximizes the sample variance of the linear combination :
Common mistakes
- Skipping standardization with mixed units. Running raw-covariance PCA on dollars plus counts lets dollars dominate PC1 by accident. The correct fix is the correlation matrix; the wrong "PC1 explains 99%" answer is the giveaway.
- Adding squared loadings across components instead of within a component. Each is unit length individually: . It is the rows of the loading matrix that need not sum to one. Test-takers who report are not doing anything wrong, just not anything useful.
- Confusing eigenvalues with PVE. Reporting as "PC1 explains 10%" is a units error. Always divide by the trace; here that gives 62.5%, not 10%.
Bottom line
- Standardize first when predictors are on different scales; otherwise the largest-variance variable dominates the first component for purely unit-based reasons, so eigendecompose the correlation matrix.
- Loading vector is a unit-length eigenvector of the sample covariance (or correlation) matrix with the th largest eigenvalue. The th score is .
- Variance explained by component equals ; proportion explained is .
- Total variance equals the trace ; for correlation-matrix PCA the trace equals .
Exam shortcut
If the problem gives only eigenvalues, compute trace and divide; do not try to recover the loadings. If the problem gives a loading vector and an observation, the score is just the dot product, period. If a problem mixes units without telling you to standardize, assume correlation-matrix PCA and use trace ; the alternative is almost always a trick designed to inflate PC1.
The full lesson (about 2,019 words, 13 min read) adds 2 worked examples, all 6 common mistakes, a self-check, free in the app.
Learning objectives
- C5
Browse all free MAS-II lessons or jump into free MAS-II practice questions.