Chapter 72A: Matrix-Valued Random Variables and Distributions¶
Prerequisites: Random Matrices (Ch23) · Positive Definite Matrices (Ch16) · Probability Theory · Statistics
Chapter Outline: Definition of Matrix-Valued Random Variables → The Matrix Normal Distribution (\(MN_{n,p}\)) → Kronecker Structure of Covariance → Wishart Distribution (Algebraic Model for Sample Covariance) → Inverse Wishart Distribution (Conjugate Priors) → Matrix Variate T-Distribution → Matrix Beta and Gamma Distributions → Applications: Multivariate Analysis of Variance (MANOVA), Bayesian Multivariate Regression, and Structural Modeling in Econometrics
Extension: Matrix distributions are the backbone of multivariate statistics; they elevate scalar probability distributions to high-dimensional tensor spaces, revealing the joint fluctuation patterns of multiple variables across temporal and spatial dimensions.
In traditional statistics, we study random variables \(X\) or random vectors \(\mathbf{x}\). However, when handling multivariate data with temporal structures (e.g., stock returns across \(n\) time points and \(p\) indices), the most natural object of description is a random matrix. Matrix Distributions describe not only the overall fluctuation of matrix entries but also characterize complex covariance relationships between variables through specific product structures. This chapter introduces this advanced algebraic language of modern statistics.
72A.1 Matrix Normal Distribution¶
Definition 72A.1 (Matrix Normal Distribution)
A random matrix \(X \in \mathbb{R}^{n \times p}\) follows a Matrix Normal Distribution \(MN_{n,p}(M, U, V)\) if its vectorization satisfies: $\(\operatorname{vec}(X) \sim \mathcal{N}(\operatorname{vec}(M), V \otimes U)\)$ - \(M\): \(n \times p\) mean matrix. - \(U\): \(n \times n\) row covariance matrix (describing correlations between samples/rows). - \(V\): \(p \times p\) column covariance matrix (describing correlations between features/columns).
72A.2 The Wishart Distribution¶
Definition 72A.2 (Wishart Distribution)
Let \(X_1, \ldots, X_n\) be independent samples from \(\mathcal{N}(0, \Sigma)\). Then the random matrix \(S = \sum X_i X_i^T\) follows a Wishart Distribution, denoted \(S \sim W_p(n, \Sigma)\). Status: The Wishart distribution is the theoretical model for the "sample covariance matrix" in multivariate analysis, analogous to the \(\chi^2\) distribution for scalar variance.
72A.3 Inverse Wishart and Bayesian Inference¶
Definition 72A.3 (Inverse Wishart Distribution)
If \(S \sim W_p(n, \Sigma)\), then \(S^{-1}\) follows an Inverse Wishart Distribution. Application: In Bayesian statistics, it is the conjugate prior for the covariance matrix of a multivariate normal distribution, greatly simplifying the matrix calculations for posterior probabilities.
72A.4 Matrix Variate T-Distribution¶
Heavy-Tailed Distributions
The Matrix T-distribution is a mixture of matrix normal and Wishart scales. It is more robust than the normal distribution and can capture "fat-tail" phenomena in financial data, where extreme events occur more frequently than predicted by normality.
Exercises¶
Solution
\(V \otimes U\). This reflects the decoupling of row and column correlations (Kronecker structure).
Solution
\(E[X] = M\).
Solution
\(E[S] = E[\sum X_i X_i^T] = \sum E[X_i X_i^T] = \sum \Sigma = n\Sigma\).
Solution
When the sample size \(n < p\). Since \(S\) is the sum of \(n\) rank-1 matrices, its rank is at most \(n\), making it singular in a \(p\)-dimensional space.
Solution
Since \(\operatorname{vec}(AXB) = (B^T \otimes A) \operatorname{vec}(X)\), linear transformations preserve normality. The new covariance becomes \((B^T V B) \otimes (A U A^T)\).
Solution
A distribution defined on the ratio of two Wishart variables (in the form \(S_1 (S_1+S_2)^{-1}\)), used for hypothesis testing in multivariate analysis (e.g., Wilks' Lambda).
Solution
\(\|X\|_F^2 = \sum x_{ij}^2\). Since entries are i.i.d. \(\mathcal{N}(0, 1)\), their sum of squares follows a \(\chi^2\) distribution with 4 degrees of freedom.
Solution
Because if the likelihood is multivariate normal and the prior is Inverse Wishart, the resulting posterior is also an Inverse Wishart distribution, maintaining algebraic consistency.
Solution
Matrix distributions focus on exact probability density functions for specific parameters (mean, covariance); RMT focuses on asymptotic spectral properties (universal laws) as dimensions \(n \to \infty\).
Solution
Chapter Summary¶
Matrix distributions establish the algebraic logic of high-dimensional uncertainty:
****: Via the Kronecker product, the matrix normal distribution achieves precise separation of temporal (row) and spatial (column) correlations, greatly compressing the parameter space.
****: The Wishart distribution proves that positive definite matrices are not just algebraic objects but natural probability measures for multivariate fluctuations—the cornerstone of all multivariate inference.
****: The algebraic beauty of conjugate priors demonstrates the deep unity of linear algebra and probabilistic reasoning, providing an efficient closed-form framework for dynamic learning from high-dimensional data.