Skip to content

Commit 02acf59

Browse files
authored
Merge pull request #273 from JoramSoch/master
added 1 proof and 1 definition
2 parents 43a22b5 + 04f6b05 commit 02acf59

3 files changed

Lines changed: 87 additions & 4 deletions

File tree

D/para.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
layout: definition
3+
mathjax: true
4+
5+
author: "Joram Soch"
6+
affiliation: "BCCN Berlin"
7+
e_mail: "joram.soch@bccn-berlin.de"
8+
date: 2024-09-27 12:40:05
9+
10+
title: "Parameter"
11+
chapter: "General Theorems"
12+
section: "Probability theory"
13+
topic: "Probability distributions"
14+
definition: "Statistical parameter"
15+
16+
sources:
17+
- authors: "Wikipedia"
18+
year: 2024
19+
title: "Statistical parameter"
20+
in: "Wikipedia, the free encyclopedia"
21+
pages: "retrieved on 2024-09-27"
22+
url: "https://en.wikipedia.org/wiki/Statistical_parameter#Parameterised_distributions"
23+
24+
def_id: "D204"
25+
shortcut: "para"
26+
username: "JoramSoch"
27+
---
28+
29+
30+
**Definition:** A parameter, also "statistical parameter", is any fixed quantity, i.e. [constant](/D/const) scalar, vector or matrix, that describes a parametrized [probability distribution](/D/dist).
31+
32+
Examples of parameters include the mean and variance parameters of a [normal distribution](/D/norm), covariance parameters in a [multivariate](/D/mvn) or [matrix](/D/matn)-normal distribution, shape and rate parameters of the [gamma distribution](/D/gam) or the vector of category probabilities in a [multinomial distribution](/D/mult).

I/ToC.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ title: "Table of Contents"
6868
&emsp;&ensp; 1.5.3. *[Marginal distribution](/D/dist-marg)* <br>
6969
&emsp;&ensp; 1.5.4. *[Conditional distribution](/D/dist-cond)* <br>
7070
&emsp;&ensp; 1.5.5. *[Sampling distribution](/D/dist-samp)* <br>
71+
&emsp;&ensp; 1.5.6. *[Statistical parameter](/D/para)* <br>
7172

7273
<p id="Probability mass function"></p>
7374
1.6. Probability mass function <br>
@@ -184,10 +185,11 @@ title: "Table of Contents"
184185
1.14. Correlation <br>
185186
&emsp;&ensp; 1.14.1. *[Definition](/D/corr)* <br>
186187
&emsp;&ensp; 1.14.2. **[Range](/P/corr-range)** <br>
187-
&emsp;&ensp; 1.14.3. *[Sample correlation coefficient](/D/corr-samp)* <br>
188-
&emsp;&ensp; 1.14.4. **[Relationship to standard scores](/P/corr-z)** <br>
189-
&emsp;&ensp; 1.14.5. *[Correlation matrix](/D/corrmat)* <br>
190-
&emsp;&ensp; 1.14.6. *[Sample correlation matrix](/D/corrmat-samp)* <br>
188+
&emsp;&ensp; 1.14.3. **[Correlation under independence](/P/corr-ind)** <br>
189+
&emsp;&ensp; 1.14.4. *[Sample correlation coefficient](/D/corr-samp)* <br>
190+
&emsp;&ensp; 1.14.5. **[Relationship to standard scores](/P/corr-z)** <br>
191+
&emsp;&ensp; 1.14.6. *[Correlation matrix](/D/corrmat)* <br>
192+
&emsp;&ensp; 1.14.7. *[Sample correlation matrix](/D/corrmat-samp)* <br>
191193

192194
<p id="Measures of central tendency"></p>
193195
1.15. Measures of central tendency <br>

P/corr-ind.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: 2024-09-27 12:32:50
9+
10+
title: "Independent random variables are uncorrelated"
11+
chapter: "General Theorems"
12+
section: "Probability theory"
13+
topic: "Correlation"
14+
theorem: "Correlation under independence"
15+
16+
sources:
17+
- authors: "StatProofBook"
18+
year: 2022
19+
title: "Uncorrelated random variables are not necessarily independent."
20+
in: "X"
21+
pages: "Nov 22, 2022, 06:34 AM"
22+
url: "https://x.com/StatProofBook/status/1594927275514134528"
23+
24+
proof_id: "P472"
25+
shortcut: "corr-ind"
26+
username: "JoramSoch"
27+
---
28+
29+
30+
**Theorem:** [Independent](/D/ind) [random variables](/D/rvar) are uncorrelated.
31+
32+
33+
**Proof:** The [correlation](/D/corr) of two random variables is defined as:
34+
35+
$$ \label{eq:corr}
36+
\mathrm{Corr}(X,Y) = \frac{\mathrm{Cov}(X,Y)}{\sqrt{\mathrm{Var}(X)} \sqrt{\mathrm{Var}(Y)}} \; .
37+
$$
38+
39+
The [covariance of independent random variables is zero](/P/cov-ind):
40+
41+
$$ \label{eq:cov-ind}
42+
X, Y \; \text{independent} \quad \Rightarrow \quad \mathrm{Cov}(X,Y) = 0 \; .
43+
$$
44+
45+
Thus, the correlation of independent random variables is also zero:
46+
47+
$$ \label{eq:corr-ind-qed}
48+
X, Y \; \text{independent} \quad \Rightarrow \quad \mathrm{Corr}(X,Y) = 0 \; .
49+
$$

0 commit comments

Comments
 (0)