Skip to content

Commit 8db6a8c

Browse files
committed
corrected some pages
Several small mistakes/errors were corrected in several proofs/definitions.
1 parent b054825 commit 8db6a8c

8 files changed

Lines changed: 153 additions & 153 deletions

File tree

D/rexp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ date: 2020-11-19 04:10:00
1010
title: "Random experiment"
1111
chapter: "General Theorems"
1212
section: "Probability theory"
13-
topic: "Random variables"
13+
topic: "Random experiments"
1414
definition: "Random experiment"
1515

1616
sources:
@@ -29,10 +29,10 @@ username: "JoramSoch"
2929

3030
**Definition:** A random experiment is any repeatable procedure that [results in one](/D/rvar) out of a well-defined set of possible outcomes.
3131

32-
* The set of possible outcomes is called sample space.
32+
* The set of possible outcomes is called [sample space](/D/samp-spc).
3333

3434
* A set of zero or more outcomes is called a [random event](/D/reve).
3535

3636
* A function that maps from events to probabilities is called a [probability function](/D/dist).
3737

38-
Together, sample space, event space and probability function characterize a random experiment.
38+
Together, [sample space](/D/samp-spc), [event space](/D/eve-spc) and [probability function](/D/prob-spc) characterize a random experiment.

D/rvar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ username: "JoramSoch"
3131

3232
* informally, as a real number $X \in \mathbb{R}$ whose value is the outcome of a [random experiment](/D/rexp);
3333

34-
* formally, as a [measurable function](/D/meas-fct) $X$ defined on a [probability space](/D/prob-spc) $(\Omega, \mathcal{F}, P)$ that maps from a sample space $\Omega$ to the real numbers $\mathbb{R}$ using an event space $\mathcal{F}$ and a [probability function](/D/dist) $P$;
34+
* formally, as a [measurable function](/D/meas-fct) $X$ defined on a [probability space](/D/prob-spc) $(\Omega, \mathcal{E}, P)$ that maps from a [sample space](/D/samp-spc) $\Omega$ to the real numbers $\mathbb{R}$ using an [event space](/D/eve-spc) $\mathcal{E}$ and a [probability function](/D/dist) $P$;
3535

3636
* more broadly, as any random quantity $X$ such as a [random event](/D/reve), a [random scalar](/D/rvar), a [random vector](/D/rvec) or a [random matrix](/D/rmat).

I/ToC.md

Lines changed: 140 additions & 140 deletions
Large diffs are not rendered by default.

P/cov-tot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ username: "JoramSoch"
2727
---
2828

2929

30-
**Theorem:** Let $X$, $Y$ and $Z$ be [random variables](/D/rvar) defined on the same [probability space](/D/prob-spc) and assume that the [covariance](/D/cov) of $X$ and $Y$ is finite. Then, the sum of the [expectation](/D/mean) of the conditional covariance and the [covariance](/D/cov) of the conditional expectations of $X$ and $Y$ given $Z$ is equal to the [covariance](/D/cov) of $X$ and $Y$:
30+
**Theorem:** (law of total covariance, also called "conditional covariance formula") Let $X$, $Y$ and $Z$ be [random variables](/D/rvar) defined on the same [probability space](/D/prob-spc) and assume that the [covariance](/D/cov) of $X$ and $Y$ is finite. Then, the sum of the [expectation](/D/mean) of the conditional covariance and the [covariance](/D/cov) of the conditional expectations of $X$ and $Y$ given $Z$ is equal to the [covariance](/D/cov) of $X$ and $Y$:
3131

3232
$$ \label{eq:cov-tot}
3333
\mathrm{Cov}(X,Y) = \mathrm{E}[\mathrm{Cov}(X,Y \vert Z)] + \mathrm{Cov}[\mathrm{E}(X \vert Z),\mathrm{E}(Y \vert Z)] \; .

P/mean-lin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ $$ \label{eq:mean-lin}
4242
\end{split}
4343
$$
4444

45-
for [random variables](/D/rvar) $X$ and $Y$ and a constant $a$.
45+
for [random variables](/D/rvar) $X$ and $Y$ and a [constant](/D/const) $a$.
4646

4747

4848
**Proof:**
4949

50-
1) If $X$ and $Y$ are discrete random variables, the [expected value](/D/mean) is
50+
1) If $X$ and $Y$ are [discrete random variables](/D/rvar-disc), the [expected value](/D/mean) is
5151

5252
$$ \label{eq:mean-disc}
5353
\mathrm{E}(X) = \sum_{x \in \mathcal{X}} x \cdot f_X(x)
@@ -82,7 +82,7 @@ $$ \label{eq:mean-lin-s2-disc}
8282
$$
8383

8484
<br>
85-
2) If $X$ and $Y$ are continuous random variables, the [expected value](/D/mean) is
85+
2) If $X$ and $Y$ are [continuous random variables](/D/rvar-disc), the [expected value](/D/mean) is
8686

8787
$$ \label{eq:mean-cont}
8888
\mathrm{E}(X) = \int_{\mathcal{X}} x \cdot f_X(x) \, \mathrm{d}x
@@ -117,4 +117,4 @@ $$ \label{eq:mean-lin-s2-cont}
117117
$$
118118

119119
<br>
120-
Collectively, this shows that both requirements for linearity are fulfilled for the expected value, for discrete as well as for continuous random variables.
120+
Collectively, this shows that both requirements for linearity are fulfilled for the [expected value](/D/mean), for [discrete](/D/rvar-disc) as well as for [continuous](/D/rvar-disc) random variables.

P/mean-tot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ username: "JoramSoch"
2727
---
2828

2929

30-
**Theorem:** Let $X$ be a [random variable](/D/rvar) with [expected value](/D/mean) $\mathrm{E}(X)$ and let $Y$ be any [random variable](/D/var) defined on the same [probability space](/D/prob-spc). Then, the [expected value](/D/mean) of the [conditional expectation](/D/mean-cond) of $X$ given $Y$ is the same as the [expected value](/D/mean) of $X$:
30+
**Theorem:** (law of total expectation, also called "law of iterated expectations") Let $X$ be a [random variable](/D/rvar) with [expected value](/D/mean) $\mathrm{E}(X)$ and let $Y$ be any [random variable](/D/var) defined on the same [probability space](/D/prob-spc). Then, the [expected value](/D/mean) of the [conditional expectation](/D/mean-cond) of $X$ given $Y$ is the same as the [expected value](/D/mean) of $X$:
3131

3232
$$ \label{eq:mean-tot}
3333
\mathrm{E}(X) = \mathrm{E}[\mathrm{E}(X \vert Y)] \; .

P/slr-mlr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ where $1_n$ is an $n \times 1$ vector of ones, $x$ is the $n \times 1$ single pr
3333
**Proof:** Without loss of generality, consider the [simple linear regression case with uncorrelated errors](/D/slr):
3434

3535
$$ \label{eq:slr}
36-
y_i = \beta_0 + \beta_1 x_i + \varepsilon_i, \; \varepsilon_i \sim \mathcal{N}(0, \sigma^2) \; .
36+
y_i = \beta_0 + \beta_1 x_i + \varepsilon_i, \; \varepsilon_i \sim \mathcal{N}(0, \sigma^2), \; i = 1,\ldots,n \; .
3737
$$
3838

3939
In matrix notation and using the [multivariate normal distribution](/D/mvn), this can also be written as

P/var-tot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: "Law of total variance"
1111
chapter: "General Theorems"
1212
section: "Probability theory"
1313
topic: "Variance"
14-
theorem: "Law of total expectation"
14+
theorem: "Law of total variance"
1515

1616
sources:
1717
- authors: "Wikipedia"
@@ -27,7 +27,7 @@ username: "JoramSoch"
2727
---
2828

2929

30-
**Theorem:** Let $X$ and $Y$ be [random variables](/D/rvar) defined on the same [probability space](/D/prob-spc) and assume that the [variance](/D/var) of $Y$ is finite. Then, the sum of the [expectation](/D/mean) of the conditional variance and the [variance](/D/var) of the conditional expectation of $Y$ given $X$ is equal to the [variance](/D/var) of $Y$:
30+
**Theorem:** (law of total variance, also called "conditional variance formula") Let $X$ and $Y$ be [random variables](/D/rvar) defined on the same [probability space](/D/prob-spc) and assume that the [variance](/D/var) of $Y$ is finite. Then, the sum of the [expectation](/D/mean) of the conditional variance and the [variance](/D/var) of the conditional expectation of $Y$ given $X$ is equal to the [variance](/D/var) of $Y$:
3131

3232
$$ \label{eq:var-tot}
3333
\mathrm{Var}(Y) = \mathrm{E}[\mathrm{Var}(Y \vert X)] + \mathrm{Var}[\mathrm{E}(Y \vert X)] \; .

0 commit comments

Comments
 (0)