Skip to content

Commit 44400da

Browse files
authored
added 1 proof
1 parent fc8f64b commit 44400da

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

P/norm-mvn.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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-08-19 19:41:00
9+
10+
title: "Normal distribution is a special case of multivariate normal distribution"
11+
chapter: "Probability Distributions"
12+
section: "Univariate continuous distributions"
13+
topic: "Normal distribution"
14+
theorem: "Special case of matrix-normal distribution"
15+
16+
sources:
17+
- authors: "Wikipedia"
18+
year: 2022
19+
title: "Multivariate normal distribution"
20+
in: "Wikipedia, the free encyclopedia"
21+
pages: "retrieved on 2022-08-19"
22+
url: "https://en.wikipedia.org/wiki/Multivariate_normal_distribution"
23+
24+
proof_id: "P331"
25+
shortcut: "norm-snorm"
26+
username: "JoramSoch"
27+
---
28+
29+
30+
**Theorem:** The [normal distribution](/D/norm) is a special case of the [multivariate normal distribution](/D/mvn) with number of variables $n = 1$, i.e. [random vector](/D/rvec) $x \in \mathbb{R}$, mean $\mu \in \mathbb{R}$ and covariance matrix $\Sigma = \sigma^2$.
31+
32+
33+
**Proof:** The [probability density function of the multivariate normal distribution](/P/mvn-pdf) is
34+
35+
$$ \label{eq:mvn-pdf}
36+
\mathcal{N}(x; \mu, \Sigma) = \frac{1}{\sqrt{(2 \pi)^n |\Sigma|}} \cdot \exp \left[ -\frac{1}{2} (x-\mu)^\mathrm{T} \Sigma^{-1} (x-\mu) \right] \; .
37+
$$
38+
39+
Setting $n = 1$, such that $x, \mu \in \mathbb{R}$, and $\Sigma = \sigma^2$, we obtain
40+
41+
$$ \label{eq:norm-pdf}
42+
\begin{split}
43+
\mathcal{N}(x; \mu, \sigma^2) &= \frac{1}{\sqrt{(2 \pi)^1 |\sigma^2|}} \cdot \exp \left[ -\frac{1}{2} (x-\mu)^\mathrm{T} (\sigma^2)^{-1} (x-\mu) \right] \\
44+
&= \frac{1}{\sqrt{(2\pi) \sigma^2}} \cdot \exp\left[-\frac{1}{2 \sigma^2} (x-\mu)^2 \right] \\
45+
&= \frac{1}{\sqrt{2\pi} \sigma} \cdot \exp \left[ -\frac{1}{2} \left( \frac{x-\mu}{\sigma} \right)^2 \right]
46+
\end{split}
47+
$$
48+
49+
which is equivalent to the [probability density function of the normal distribution](/P/norm-pdf).

0 commit comments

Comments
 (0)