Skip to content

Commit 441bd5b

Browse files
authored
Merge pull request #280 from JoramSoch/master
added 1 definition and 1 proof
2 parents 6376e8f + 721d3e0 commit 441bd5b

3 files changed

Lines changed: 137 additions & 1 deletion

File tree

D/samp.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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-11-15 11:46:35
9+
10+
title: "Sample"
11+
chapter: "General Theorems"
12+
section: "Probability theory"
13+
topic: "Random experiments"
14+
definition: "Statistical sample"
15+
16+
sources:
17+
- authors: "Elliott, Graham"
18+
year: 2024
19+
title: "Sampling"
20+
in: "Understanding Statistics"
21+
pages: "retrieved on 2024-11-15"
22+
url: "https://econweb.ucsd.edu/~gelliott/Chapter5.html"
23+
24+
def_id: "D210"
25+
shortcut: "samp"
26+
username: "JoramSoch"
27+
---
28+
29+
30+
**Definition:** Let $X$ be a [random variable](/D/rvar) or a set of [random variables](/D/rvar). Then, a sample, also "statistical sample", is a set of realizations of this random variable, obtained via [observation and measurement](/D/data) within [random experiments](/D/rexp):
31+
32+
$$ \label{eq:samp}
33+
x = \left\lbrace x_1, \ldots, x_n \right\rbrace \; .
34+
$$
35+
36+
The number of elements in a sample is called "[sample size](/D/samp-size)".

I/ToC.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ title: "Table of Contents"
2121
&emsp;&ensp; 1.1.3. *[Event space](/D/eve-spc)* <br>
2222
&emsp;&ensp; 1.1.4. *[Probability space](/D/prob-spc)* <br>
2323
&emsp;&ensp; 1.1.5. *[Measured data](/D/data)* <br>
24-
&emsp;&ensp; 1.1.6. *[Sample statistic](/D/stat)* <br>
24+
&emsp;&ensp; 1.1.6. *[Statistical sample](/D/samp)* <br>
25+
&emsp;&ensp; 1.1.7. *[Sample statistic](/D/stat)* <br>
2526

2627
<p id="Random variables"></p>
2728
1.2. Random variables <br>
@@ -545,6 +546,7 @@ title: "Table of Contents"
545546
&emsp;&ensp; 3.6.6. **[Median](/P/lognorm-med)** <br>
546547
&emsp;&ensp; 3.6.7. **[Mode](/P/lognorm-mode)** <br>
547548
&emsp;&ensp; 3.6.8. **[Variance](/P/lognorm-var)** <br>
549+
&emsp;&ensp; 3.6.9. **[Product of independent log-normals](/P/lognorm-prodind)** <br>
548550

549551
<p id="Chi-squared distribution"></p>
550552
3.7. Chi-squared distribution <br>

P/lognorm-prodind.md

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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-11-15 11:52:45
9+
10+
title: "The product of independent log-normal random variables is a log-normal random variable"
11+
chapter: "Probability Distributions"
12+
section: "Univariate continuous distributions"
13+
topic: "Log-normal distribution"
14+
theorem: "Product of independent log-normals"
15+
16+
sources:
17+
- authors: "drhab"
18+
year: 2018
19+
title: "If Xi is a log-normal r.v., show product of all Xi is also a log-normal r.v."
20+
in: "StackExchange Mathematics"
21+
pages: "retrieved on 2024-11-15"
22+
url: "https://math.stackexchange.com/a/2838307/480910"
23+
24+
proof_id: "P479"
25+
shortcut: "lognorm-prodind"
26+
username: "JoramSoch"
27+
---
28+
29+
30+
**Theorem:** Let $X_1, \ldots, X_n$ be [independent](/D/ind) [random variables](/D/rvar) following [log-normal distributions](/D/lognorm):
31+
32+
$$ \label{eq:X-lognorm}
33+
X_i \sim \ln \mathcal{N}(\mu_i, \sigma_i^2), \; i = 1, \ldots, n \; .
34+
$$
35+
36+
Then, the product of these random variables also follows a [log-normal distribution](/D/lognorm):
37+
38+
$$ \label{eq:Z-lognorm}
39+
Z = \prod_{i=1}^n X_i \sim \mathcal{N}(\mu, \sigma^2)
40+
$$
41+
42+
where the [log-normal](/D/lognorm) parameters are given by
43+
44+
$$ \label{eq:Z-lognorm-para}
45+
\mu = \sum_{i=1}^n \mu_i
46+
\quad \text{and} \quad
47+
\sigma^2 = \sum_{i=1}^n \sigma_i^2 \; .
48+
$$
49+
50+
51+
**Proof:** A random variable [follows a log-normal distribution, if and only if its natural logarithm follows a normal distribution](/D/lognorm):
52+
53+
$$ \label{eq:lognorm-norm}
54+
X \sim \ln \mathcal{N}(\mu, \sigma^2)
55+
\quad \Leftrightarrow \quad
56+
\ln X \sim \mathcal{N}(\mu, \sigma^2) \; .
57+
$$
58+
59+
Thus, from \eqref{eq:X-lognorm}, we have
60+
61+
$$ \label{eq:Y-norm}
62+
Y_i = \ln X_i \sim \mathcal{N}(\mu_i, \sigma_i^2)
63+
$$
64+
65+
and from \eqref{eq:Z-lognorm}, we have
66+
67+
$$ \label{eq:ln-Z}
68+
\ln Z
69+
= \ln \left( \prod_{i=1}^n X_i \right)
70+
= \sum_{i=1}^n \ln X_i
71+
= \sum_{i=1}^n Y_i \; .
72+
$$
73+
74+
This means that the logarithm of the product of independent [log-normal](/D/lognorm) random variables is a sum of independent [normal](/D/norm) random variables. This sum, like any [linear combination of independent normal random variables, is again normally distributed](/P/norm-lincomb). Thus, combining \eqref{eq:ln-Z} and \eqref{eq:Y-norm}, we have:
75+
76+
$$ \label{eq:ln-Z-norm}
77+
\ln Z
78+
= \sum_{i=1}^n Y_i
79+
\sim \mathcal{N}\left( \sum_{i=1}^n \mu_i, \sum_{i=1}^n \sigma_i^2 \right) \; .
80+
$$
81+
82+
If a random variable [follows a normal distribution, then its exponential follows a log-normal distribution with the same parameters]:
83+
84+
$$ \label{eq:norm-lognorm}
85+
Y \sim \mathcal{N}(\mu, \sigma^2)
86+
\quad \Leftrightarrow \quad
87+
\exp(Y) \sim \ln \mathcal{N}(\mu, \sigma^2) \; .
88+
$$
89+
90+
Thus, from \eqref{eq:ln-Z-norm}, we have
91+
92+
$$ \label{eq:Z-lognorm-qed}
93+
Z
94+
= \exp(\ln Z)
95+
\sim \ln \mathcal{N}\left( \sum_{i=1}^n \mu_i, \sum_{i=1}^n \sigma_i^2 \right)
96+
$$
97+
98+
which is equivalent to \eqref{eq:Z-lognorm} and \eqref{eq:Z-lognorm-para}.

0 commit comments

Comments
 (0)