Skip to content

Commit 170c4d2

Browse files
committed
updated index pages
The index pages were updated with the recently added proofs/definitions.
1 parent 70e24e6 commit 170c4d2

11 files changed

Lines changed: 39 additions & 15 deletions

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 |

I/Proof_by_Topic.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ title: "Proof by Topic"
3535
- [Convexity of the Kullback-Leibler divergence](/P/kl-conv)
3636
- [Convexity of the cross-entropy](/P/entcross-conv)
3737
- [Covariance of independent random variables](/P/cov-ind)
38+
- [Cumulative distribution function in terms of probability density function of a continuous random variable](/P/cdf-pdf)
39+
- [Cumulative distribution function in terms of probability mass function of a discrete random variable](/P/cdf-pmf)
3840
- [Cumulative distribution function of a strictly decreasing function of a random variable](/P/cdf-sdfct)
3941
- [Cumulative distribution function of a strictly increasing function of a random variable](/P/cdf-sifct)
4042
- [Cumulative distribution function of the continuous uniform distribution](/P/cuni-cdf)
@@ -179,6 +181,7 @@ title: "Proof by Topic"
179181
- [Posterior model probability in terms of log Bayes factor](/P/pmp-lbf)
180182
- [Posterior probability of the alternative hypothesis for Bayesian linear regression](/P/blr-pp)
181183
- [Probability and log-odds in logistic regression](/P/logreg-pnlo)
184+
- [Probability density function is first derivative of cumulative distribution function](/P/pdf-cdf)
182185
- [Probability density function of a strictly decreasing function of a continuous random variable](/P/pdf-sdfct)
183186
- [Probability density function of a strictly increasing function of a continuous random variable](/P/pdf-sifct)
184187
- [Probability density function of the Dirichlet distribution](/P/dir-pdf)
@@ -204,6 +207,7 @@ title: "Proof by Topic"
204207

205208
### Q
206209

210+
- [Quantile function is inverse of strictly monotonically increasing cumulative distribution function](/P/qf-cdf)
207211
- [Quantile function of the continuous uniform distribution](/P/cuni-qf)
208212
- [Quantile function of the discrete uniform distribution](/P/duni-qf)
209213
- [Quantile function of the exponential distribution](/P/exp-qf)

I/Proofs_without_Source.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ title: "Proofs without Source"
66

77
- [Chi-square distribution is a special case of gamma distribution](/P/chi2-gam)
88
- [Conditional distributions of the normal-gamma distribution](/P/ng-cond)
9+
- [Cumulative distribution function in terms of probability density function of a continuous random variable](/P/cdf-pdf)
10+
- [Cumulative distribution function in terms of probability mass function of a discrete random variable](/P/cdf-pmf)
911
- [Cumulative distribution function of the continuous uniform distribution](/P/cuni-cdf)
1012
- [Cumulative distribution function of the discrete uniform distribution](/P/duni-cdf)
1113
- [Cumulative distribution function of the exponential distribution](/P/exp-cdf)

I/Table_of_Contents.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,20 @@ title: "Table of Contents"
104104
&emsp;&ensp; 1.10.1. *[Standard deviation](/D/std)* <br>
105105
&emsp;&ensp; 1.10.2. *[Full width at half maximum](/D/fwhm)* <br>
106106

107-
1.11. Further moments <br>
108-
&emsp;&ensp; 1.11.1. *[Moment](/D/mom)* <br>
109-
&emsp;&ensp; 1.11.2. **[Moment in terms of moment-generating function](/P/mom-mgf)** <br>
110-
&emsp;&ensp; 1.11.3. *[Raw moment](/D/mom-raw)* <br>
111-
&emsp;&ensp; 1.11.4. **[First raw moment is mean](/P/momraw-1st)** <br>
112-
&emsp;&ensp; 1.11.5. **[Second raw moment and variance](/P/momraw-2nd)** <br>
113-
&emsp;&ensp; 1.11.6. *[Central moment](/D/mom-cent)* <br>
114-
&emsp;&ensp; 1.11.7. **[First central moment is zero](/P/momcent-1st)** <br>
115-
&emsp;&ensp; 1.11.8. **[Second central moment is variance](/P/momcent-2nd)** <br>
116-
&emsp;&ensp; 1.11.9. *[Standardized moment](/D/mom-stand)* <br>
107+
1.11. Further summary statistics <br>
108+
&emsp;&ensp; 1.11.1. *[Minimum](/D/min)* <br>
109+
&emsp;&ensp; 1.11.2. *[Maximum](/D/max)* <br>
110+
111+
1.12. Further moments <br>
112+
&emsp;&ensp; 1.12.1. *[Moment](/D/mom)* <br>
113+
&emsp;&ensp; 1.12.2. **[Moment in terms of moment-generating function](/P/mom-mgf)** <br>
114+
&emsp;&ensp; 1.12.3. *[Raw moment](/D/mom-raw)* <br>
115+
&emsp;&ensp; 1.12.4. **[First raw moment is mean](/P/momraw-1st)** <br>
116+
&emsp;&ensp; 1.12.5. **[Second raw moment and variance](/P/momraw-2nd)** <br>
117+
&emsp;&ensp; 1.12.6. *[Central moment](/D/mom-cent)* <br>
118+
&emsp;&ensp; 1.12.7. **[First central moment is zero](/P/momcent-1st)** <br>
119+
&emsp;&ensp; 1.12.8. **[Second central moment is variance](/P/momcent-2nd)** <br>
120+
&emsp;&ensp; 1.12.9. *[Standardized moment](/D/mom-stand)* <br>
117121

118122
2. Information theory
119123

P/cuni-qf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $$ \label{eq:cuni-qf}
3333
Q_X(p) = \left\{
3434
\begin{array}{rl}
3535
-\infty \; , & \text{if} \; p = 0 \\
36-
bp + a(1-p) \; , & \text{when} \; p \in \left\lbrace \frac{1}{n}, \frac{2}{n}, \ldots, \frac{b-a}{n}, 1 \right\rbrace \; .
36+
bp + a(1-p) \; , & \text{if} \; p > 0 \; .
3737
\end{array}
3838
\right.
3939
$$

P/exp-qf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $$ \label{eq:exp-qf}
3333
Q_X(p) = \left\{
3434
\begin{array}{rl}
3535
-\infty \; , & \text{if} \; p = 0 \\
36-
-\frac{\ln(1-p)}{\lambda} \; , & \text{if} \; p > 1 \; .
36+
-\frac{\ln(1-p)}{\lambda} \; , & \text{if} \; p > 0 \; .
3737
\end{array}
3838
\right.
3939
$$

0 commit comments

Comments
 (0)