You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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
Copy file name to clipboardExpand all lines: D/pdf.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ username: "JoramSoch"
27
27
---
28
28
29
29
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
Copy file name to clipboardExpand all lines: D/pmf.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ username: "JoramSoch"
27
27
---
28
28
29
29
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
Copy file name to clipboardExpand all lines: D/qf.md
+1-7Lines changed: 1 addition & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,14 +27,8 @@ username: "JoramSoch"
27
27
---
28
28
29
29
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$:
31
31
32
32
$$ \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}
39
33
Q_X(p) = \min \left\lbrace x \in \mathbb{R} \, \vert \, F_X(x) = p \right\rbrace \; .
Copy file name to clipboardExpand all lines: D/rfmat.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,5 +30,5 @@ username: "JoramSoch"
30
30
**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:
31
31
32
32
$$ \label{eq:pm}
33
-
Ry = \hat{\varepsilon} = y - \hat{y} \; .
33
+
Ry = \hat{\varepsilon} = y - \hat{y} = y - X \hat{\beta} \; .
Copy file name to clipboardExpand all lines: I/Proof_by_Number.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,3 +195,7 @@ title: "Proof by Number"
195
195
| P186 | cdf-sdfct |[Cumulative distribution function of a strictly decreasing function of a random variable](/P/cdf-sdfct)| JoramSoch | 2020-11-06 |
196
196
| P187 | pmf-sdfct |[Probability mass function of a strictly decreasing function of a discrete random variable](/P/pmf-sdfct)| JoramSoch | 2020-11-06 |
197
197
| 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