Skip to content

Commit 3e33d83

Browse files
authored
Merge pull request #40 from StatProofBook/master
update to master
2 parents 17ac7ef + 170c4d2 commit 3e33d83

19 files changed

Lines changed: 89 additions & 42 deletions

D/cdf.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,15 @@ F_X(x) = \mathrm{Pr}(X \leq x) \; .
3434
$$
3535

3636
<br>
37-
1) Let $X$ be a discrete [random variable](/D/rvar) with possible outcomes $\mathcal{X}$ and the [probability mass function](/D/pmf) $f_X(x)$. Then, the function $F_X(x): \mathbb{R} \to [0,1]$ with
37+
1) If $X$ is a [discrete](/D/rvar-disc) [random variable](/D/rvar) with possible outcomes $\mathcal{X}$ and the [probability mass function](/D/pmf) $f_X(x)$, then [the cumulative distribution function is the function](/P/cdf-pmf) $F_X(x): \mathbb{R} \to [0,1]$ with
3838

3939
$$ \label{eq:cdf-disc}
40-
F_X(x) = \sum_{\overset{z \in \mathcal{X}}{z \leq x}} f_X(z)
40+
F_X(x) = \sum_{\overset{t \in \mathcal{X}}{t \leq x}} f_X(t) \; .
4141
$$
4242

43-
is the cumulative distribution function of $X$.
44-
4543
<br>
46-
2) Let $X$ be a scalar continuous [random variable](/D/rvar) with the [probability density function](/D/pdf) $f_X(x)$. Then, the function $F_X(x): \mathbb{R} \to [0,1]$ with
44+
2) If $X$ is a [continuous](/D/rvar-disc) [random variable](/D/rvar) with possible outcomes $\mathcal{X}$ and the [probability density function](/D/pdf) $f_X(x)$, then [the cumulative distribution function is the function](/P/cdf-pdf) $F_X(x): \mathbb{R} \to [0,1]$ with
4745

4846
$$ \label{eq:cdf-cont}
49-
F_X(x) = \int_{-\infty}^{x} f_X(z) \, \mathrm{d}z
50-
$$
51-
52-
is the cumulative distribution function of $X$.
47+
F_X(x) = \int_{-\infty}^{x} f_X(t) \, \mathrm{d}t \; .
48+
$$

D/pdf.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-
**Definition:** Let $X$ be a [continuous](/D/rvar-disc) [random variable](/D/rvar) with possible outcomes $\mathcal{X}$. Then, $f_X(x): \mathbb{R} \to \mathbb{R}$ is the probability density function of $X$, if
30+
**Definition:** Let $X$ be a [continuous](/D/rvar-disc) [random variable](/D/rvar) with possible outcomes $\mathcal{X}$. Then, $f_X(x): \mathbb{R} \to \mathbb{R}$ is the probability density function (PDF) of $X$, if
3131

3232
$$ \label{eq:pdf-def-s0}
3333
f_X(x) \geq 0

D/pmf.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-
**Definition:** Let $X$ be a [discrete](/D/rvar-disc) [random variable](/D/rvar) with possible outcomes $\mathcal{X}$. Then, $f_X(x): \mathbb{R} \to [0,1]$ is the probability mass function of $X$, if
30+
**Definition:** Let $X$ be a [discrete](/D/rvar-disc) [random variable](/D/rvar) with possible outcomes $\mathcal{X}$. Then, $f_X(x): \mathbb{R} \to [0,1]$ is the probability mass function (PMF) of $X$, if
3131

3232
$$ \label{eq:pmf-def-s0}
3333
f_X(x) = 0

D/qf.md

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

2929

30-
**Definition:** Let $X$ be a [random variable](/D/rvar) with the [cumulative distribution function](/D/cdf) (CDF) $F_X(x)$. Then, the function $Q_X(p): [0,1] \to \mathbb{R}$ which is the inverse CDF
30+
**Definition:** Let $X$ be a [random variable](/D/rvar) with the [cumulative distribution function](/D/cdf) (CDF) $F_X(x)$. Then, the function $Q_X(p): [0,1] \to \mathbb{R}$ which is the inverse CDF is the quantile function (QF) of $X$. More precisly, the QF is the function that, for a given quantile $p \in [0,1]$, returns the smallest $x$ for which $F_X(x) = p$:
3131

3232
$$ \label{eq:qf}
33-
Q_X(p) = F_X^{-1}(x)
34-
$$
35-
36-
is the quantile function (QF) of $X$. More precisly, the QF is the function that, for a given quantile $p \in [0,1]$, returns the smallest $x$ for which $F_X(x) = p$:
37-
38-
$$ \label{eq:qf-prec}
3933
Q_X(p) = \min \left\lbrace x \in \mathbb{R} \, \vert \, F_X(x) = p \right\rbrace \; .
4034
$$

D/rfmat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ username: "JoramSoch"
3030
**Definition:** In [multiple linear regression](/D/mlr), the residual-forming matrix is the matrix $R$ that results in the vector of residuals left over by [estimated parameters](/D/emat) when right-multiplied with the measured data:
3131

3232
$$ \label{eq:pm}
33-
Ry = \hat{\varepsilon} = y - \hat{y} \; .
33+
Ry = \hat{\varepsilon} = y - \hat{y} = y - X \hat{\beta} \; .
3434
$$

I/Definition_by_Author.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: "Definition by Author"
44
---
55

66

7-
### JoramSoch (102 definitions)
7+
### JoramSoch (104 definitions)
88

99
- [Akaike information criterion](/D/aic)
1010
- [Bayesian information criterion](/D/bic)
@@ -63,9 +63,11 @@ title: "Definition by Author"
6363
- [Marginal likelihood](/D/ml)
6464
- [Marginal probability distribution](/D/dist-marg)
6565
- [Matrix-normal distribution](/D/matn)
66+
- [Maximum](/D/max)
6667
- [Maximum likelihood estimation](/D/mle)
6768
- [Maximum log-likelihood](/D/mll)
6869
- [Median](/D/med)
70+
- [Minimum](/D/min)
6971
- [Mode](/D/mode)
7072
- [Moment](/D/mom)
7173
- [Moment-generating function](/D/mgf)

I/Definition_by_Number.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,5 @@ title: "Definition by Number"
113113
| D104 | dir-data | [Dirichlet-distributed data](/D/dir-data) | JoramSoch | 2020-10-22 |
114114
| D105 | rvar-disc | [Discrete and continuous random variable](/D/rvar-disc) | JoramSoch | 2020-10-29 |
115115
| D106 | rvar-uni | [Univariate and multivariate random variable](/D/rvar-uni) | JoramSoch | 2020-11-06 |
116+
| D107 | min | [Minimum](/D/min) | JoramSoch | 2020-11-12 |
117+
| D108 | max | [Maximum](/D/max) | JoramSoch | 2020-11-12 |

I/Definition_by_Topic.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,11 @@ title: "Definition by Topic"
9797
- [Marginal likelihood](/D/ml)
9898
- [Marginal probability distribution](/D/dist-marg)
9999
- [Matrix-normal distribution](/D/matn)
100+
- [Maximum](/D/max)
100101
- [Maximum likelihood estimation](/D/mle)
101102
- [Maximum log-likelihood](/D/mll)
102103
- [Median](/D/med)
104+
- [Minimum](/D/min)
103105
- [Mode](/D/mode)
104106
- [Moment](/D/mom)
105107
- [Moment-generating function](/D/mgf)

I/Proof_by_Author.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: "Proof by Author"
44
---
55

66

7-
### JoramSoch (179 proofs)
7+
### JoramSoch (183 proofs)
88

99
- [(Non-)Multiplicativity of the expected value](/P/mean-mult)
1010
- [Additivity of the Kullback-Leibler divergence for independent distributions](/P/kl-add)
@@ -25,6 +25,8 @@ title: "Proof by Author"
2525
- [Convexity of the Kullback-Leibler divergence](/P/kl-conv)
2626
- [Convexity of the cross-entropy](/P/entcross-conv)
2727
- [Covariance of independent random variables](/P/cov-ind)
28+
- [Cumulative distribution function in terms of probability density function of a continuous random variable](/P/cdf-pdf)
29+
- [Cumulative distribution function in terms of probability mass function of a discrete random variable](/P/cdf-pmf)
2830
- [Cumulative distribution function of a strictly decreasing function of a random variable](/P/cdf-sdfct)
2931
- [Cumulative distribution function of a strictly increasing function of a random variable](/P/cdf-sifct)
3032
- [Cumulative distribution function of the continuous uniform distribution](/P/cuni-cdf)
@@ -129,6 +131,7 @@ title: "Proof by Author"
129131
- [Posterior model probability in terms of log Bayes factor](/P/pmp-lbf)
130132
- [Posterior probability of the alternative hypothesis for Bayesian linear regression](/P/blr-pp)
131133
- [Probability and log-odds in logistic regression](/P/logreg-pnlo)
134+
- [Probability density function is first derivative of cumulative distribution function](/P/pdf-cdf)
132135
- [Probability density function of a strictly decreasing function of a continuous random variable](/P/pdf-sdfct)
133136
- [Probability density function of a strictly increasing function of a continuous random variable](/P/pdf-sifct)
134137
- [Probability density function of the Dirichlet distribution](/P/dir-pdf)
@@ -149,6 +152,7 @@ title: "Proof by Author"
149152
- [Probability mass function of the discrete uniform distribution](/P/duni-pmf)
150153
- [Probability mass function of the multinomial distribution](/P/mult-pmf)
151154
- [Projection matrix and residual-forming matrix are idempotent](/P/mlr-idem)
155+
- [Quantile function is inverse of strictly monotonically increasing cumulative distribution function](/P/qf-cdf)
152156
- [Quantile function of the continuous uniform distribution](/P/cuni-qf)
153157
- [Quantile function of the discrete uniform distribution](/P/duni-qf)
154158
- [Quantile function of the exponential distribution](/P/exp-qf)

I/Proof_by_Number.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,7 @@ title: "Proof by Number"
195195
| P186 | cdf-sdfct | [Cumulative distribution function of a strictly decreasing function of a random variable](/P/cdf-sdfct) | JoramSoch | 2020-11-06 |
196196
| P187 | pmf-sdfct | [Probability mass function of a strictly decreasing function of a discrete random variable](/P/pmf-sdfct) | JoramSoch | 2020-11-06 |
197197
| P188 | pdf-sdfct | [Probability density function of a strictly decreasing function of a continuous random variable](/P/pdf-sdfct) | JoramSoch | 2020-11-06 |
198+
| P189 | cdf-pmf | [Cumulative distribution function in terms of probability mass function of a discrete random variable](/P/cdf-pmf) | JoramSoch | 2020-11-12 |
199+
| P190 | cdf-pdf | [Cumulative distribution function in terms of probability density function of a continuous random variable](/P/cdf-pdf) | JoramSoch | 2020-11-12 |
200+
| P191 | pdf-cdf | [Probability density function is first derivative of cumulative distribution function](/P/pdf-cdf) | JoramSoch | 2020-11-12 |
201+
| P192 | qf-cdf | [Quantile function is inverse of strictly monotonically increasing cumulative distribution function](/P/qf-cdf) | JoramSoch | 2020-11-12 |

0 commit comments

Comments
 (0)