Skip to content

Commit 2c8c744

Browse files
authored
Merge pull request #153 from StatProofBook/master
update to master
2 parents 720f2ef + 4257035 commit 2c8c744

9 files changed

Lines changed: 11 additions & 5 deletions

File tree

I/DbA.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ title: "Definition by Author"
1313

1414
- [Sample covariance](/D/cov-samp)
1515

16-
### JoramSoch (188 definitions)
16+
### JoramSoch (189 definitions)
1717

1818
- [Akaike information criterion](/D/aic)
1919
- [Alternative hypothesis](/D/h1)
@@ -184,6 +184,7 @@ title: "Definition by Author"
184184
- [Standard normal distribution](/D/snorm)
185185
- [Standard uniform distribution](/D/suni)
186186
- [Standardized moment](/D/mom-stand)
187+
- [Statistic](/D/stat)
187188
- [Statistical hypothesis](/D/hyp)
188189
- [Statistical hypothesis test](/D/test)
189190
- [Statistical independence](/D/ind)

I/DbN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,3 +211,4 @@ title: "Definition by Number"
211211
| D202 | prior-pred | [Prior predictive distribution](/D/prior-pred) | aloctavodia | 2024-08-19 |
212212
| D203 | data | [Data](/D/data) | JoramSoch | 2024-09-20 |
213213
| D204 | para | [Parameter](/D/para) | JoramSoch | 2024-09-27 |
214+
| D205 | stat | [Statistic](/D/stat) | JoramSoch | 2024-10-04 |

I/DbT.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ title: "Definition by Topic"
241241
- [Standard normal distribution](/D/snorm)
242242
- [Standard uniform distribution](/D/suni)
243243
- [Standardized moment](/D/mom-stand)
244+
- [Statistic](/D/stat)
244245
- [Statistical hypothesis](/D/hyp)
245246
- [Statistical hypothesis test](/D/test)
246247
- [Statistical independence](/D/ind)

I/PbA.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ title: "Proof by Author"
1212

1313
- [Posterior predictive distribution is a marginal distribution of the joint likelihood](/P/postpred-jl)
1414

15-
### JoramSoch (436 proofs)
15+
### JoramSoch (437 proofs)
1616

1717
- [Accuracy and complexity for Bayesian linear regression](/P/blr-anc)
1818
- [Accuracy and complexity for Bayesian linear regression with known covariance](/P/blrkc-anc)
@@ -270,6 +270,7 @@ title: "Proof by Author"
270270
- [Normal distribution is a special case of multivariate normal distribution](/P/norm-mvn)
271271
- [Normal distribution maximizes differential entropy for fixed variance](/P/norm-maxent)
272272
- [Normal-gamma distribution is a special case of normal-Wishart distribution](/P/ng-nw)
273+
- [Normally distributed and uncorrelated does not imply independent](/P/norm-corrind)
273274
- [Omnibus F-test for multiple regressors in multiple linear regression](/P/mlr-fomnibus)
274275
- [One-sample t-test for independent observations](/P/ug-ttest1)
275276
- [One-sample z-test for independent observations](/P/ugkv-ztest1)

I/PbN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,3 +478,4 @@ title: "Proof by Number"
478478
| P470 | ind-self | [Self-independence of random event](/P/ind-self) | JoramSoch | 2024-09-20 |
479479
| P471 | med-mae | [The median minimizes the mean absolute error](/P/med-mae) | salbalkus | 2024-09-23 |
480480
| P472 | corr-ind | [Independent random variables are uncorrelated](/P/corr-ind) | JoramSoch | 2024-09-27 |
481+
| P473 | norm-corrind | [Normally distributed and uncorrelated does not imply independent](/P/norm-corrind) | JoramSoch | 2024-10-04 |

I/PbT.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ title: "Proof by Topic"
315315
- [Normal distribution is a special case of multivariate normal distribution](/P/norm-mvn)
316316
- [Normal distribution maximizes differential entropy for fixed variance](/P/norm-maxent)
317317
- [Normal-gamma distribution is a special case of normal-Wishart distribution](/P/ng-nw)
318+
- [Normally distributed and uncorrelated does not imply independent](/P/norm-corrind)
318319

319320
### O
320321

I/ToC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ title: "Table of Contents"
483483
&emsp;&ensp; 3.2.24. **[Kullback-Leibler divergence](/P/norm-kl)** <br>
484484
&emsp;&ensp; 3.2.25. **[Maximum entropy distribution](/P/norm-maxent)** <br>
485485
&emsp;&ensp; 3.2.26. **[Linear combination of independent normals](/P/norm-lincomb)** <br>
486-
&emsp;&ensp; 3.2.27. **[Normal and uncorrelated does not imply independent](/P/norm-indcorr)** <br>
486+
&emsp;&ensp; 3.2.27. **[Normal and uncorrelated does not imply independent](/P/norm-corrind)** <br>
487487

488488
<p id="t-distribution"></p>
489489
3.3. t-distribution <br>

P/norm-corrind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ p(V=0) = p(V=1) = \frac{1}{2}
4747
p(W=-1) = p(W=+1) = \frac{1}{2} \; .
4848
$$
4949

50-
Moreover, let $X$ follow a [standard normal distribution](/D/snorm) and let $Y$ be defined as a transformation of $X$ and $W$:
50+
Moreover, let $X$ follow a [standard normal distribution](/D/snorm) and let $Y$ be defined as a combination of $X$ and $W$:
5151

5252
$$ \label{eq:X-Y}
5353
\begin{split}

P/norm-lincomb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: "Linear combination of independent normal random variables"
1111
chapter: "Probability Distributions"
1212
section: "Univariate continuous distributions"
1313
topic: "Normal distribution"
14-
theorem: "Linear combination"
14+
theorem: "Linear combination of independent normals"
1515

1616
sources:
1717

0 commit comments

Comments
 (0)