Skip to content

Commit 6921e52

Browse files
authored
added 1 proof
1 parent d45f89b commit 6921e52

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

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

0 commit comments

Comments
 (0)