Skip to content

Commit 415b939

Browse files
authored
Merge pull request #170 from JoramSoch/master
added 1 proof
2 parents 4109226 + c4373d2 commit 415b939

2 files changed

Lines changed: 50 additions & 7 deletions

File tree

I/ToC.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -440,13 +440,14 @@ title: "Table of Contents"
440440

441441
4.1. Multivariate normal distribution <br>
442442
&emsp;&ensp; 4.1.1. *[Definition](/D/mvn)* <br>
443-
&emsp;&ensp; 4.1.2. **[Probability density function](/P/mvn-pdf)** <br>
444-
&emsp;&ensp; 4.1.3. **[Differential entropy](/P/mvn-dent)** <br>
445-
&emsp;&ensp; 4.1.4. **[Kullback-Leibler divergence](/P/mvn-kl)** <br>
446-
&emsp;&ensp; 4.1.5. **[Linear transformation](/P/mvn-ltt)** <br>
447-
&emsp;&ensp; 4.1.6. **[Marginal distributions](/P/mvn-marg)** <br>
448-
&emsp;&ensp; 4.1.7. **[Conditional distributions](/P/mvn-cond)** <br>
449-
&emsp;&ensp; 4.1.8. **[Conditions for independence](/P/mvn-ind)** <br>
443+
&emsp;&ensp; 4.1.2. **[Special case of matrix-normal distribution](/P/mvn-matn)** <br>
444+
&emsp;&ensp; 4.1.3. **[Probability density function](/P/mvn-pdf)** <br>
445+
&emsp;&ensp; 4.1.4. **[Differential entropy](/P/mvn-dent)** <br>
446+
&emsp;&ensp; 4.1.5. **[Kullback-Leibler divergence](/P/mvn-kl)** <br>
447+
&emsp;&ensp; 4.1.6. **[Linear transformation](/P/mvn-ltt)** <br>
448+
&emsp;&ensp; 4.1.7. **[Marginal distributions](/P/mvn-marg)** <br>
449+
&emsp;&ensp; 4.1.8. **[Conditional distributions](/P/mvn-cond)** <br>
450+
&emsp;&ensp; 4.1.9. **[Conditions for independence](/P/mvn-ind)** <br>
450451

451452
4.2. Multivariate t-distribution <br>
452453
&emsp;&ensp; 4.2.1. *[Definition](/D/mvt)* <br>

P/mvn-matn.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
layout: proof
3+
mathjax: true
4+
5+
author: "Joram Soch"
6+
affiliation: "BCCN Berlin"
7+
e_mail: "joram.soch@bccn-berlin.de"
8+
date: 2022-07-31 11:00:00
9+
10+
title: "Multivariate normal distribution is a special case of matrix-normal distribution"
11+
chapter: "Probability Distributions"
12+
section: "Multivariate continuous distributions"
13+
topic: "Multivariate normal distribution"
14+
theorem: "Special case of matrix-normal distribution"
15+
16+
sources:
17+
18+
proof_id: "P330"
19+
shortcut: "mvn-matn"
20+
username: "JoramSoch"
21+
---
22+
23+
24+
**Theorem:** The [multivariate normal distribution](/D/mvn) is a special case of the [matrix-normal distribution](/D/matn) with number of variables $p = 1$, i.e. [random matrix](/D/rvar) $X = x \in \mathbb{R}^{n \times 1}$, mean $M = \mu \in \mathbb{R}^{n \times 1}$, covariance across rows $U = \Sigma$ and covariance across columns $V = 1$.
25+
26+
27+
**Proof:** The [probability density function of the matrix-normal distribution](/P/matn-pdf) is
28+
29+
$$ \label{eq:matn-pdf}
30+
\mathcal{MN}(X; M, U, V) = \frac{1}{\sqrt{(2\pi)^{np} |V|^n |U|^p}} \cdot \exp\left[-\frac{1}{2} \mathrm{tr}\left( V^{-1} (X-M)^\mathrm{T} \, U^{-1} (X-M) \right) \right] \; .
31+
$$
32+
33+
Setting $p = 1$, $X = x$, $M = \mu$, $U = \Sigma$ and $V = 1$, we obtain
34+
35+
\begin{equation} \label{eq:exp-pdf}
36+
\begin{split}
37+
\mathcal{MN}(x; \mu, \Sigma, 1) &= \frac{1}{\sqrt{(2\pi)^{n} |1|^n |\Sigma|^1}} \cdot \exp\left[-\frac{1}{2} \mathrm{tr}\left( 1^{-1} (x-\mu)^\mathrm{T} \, \Sigma^{-1} (x-\mu) \right) \right] \\
38+
&= \frac{1}{\sqrt{(2\pi)^{n} |\Sigma|}} \cdot \exp\left[-\frac{1}{2} (x-\mu)^\mathrm{T} \, \Sigma^{-1} (x-\mu) \right]
39+
\end{split}
40+
\end{equation}
41+
42+
which is equivalent to the [probability density function of the multivariate normal distribution](/P/mvn-pdf).

0 commit comments

Comments
 (0)