@@ -50,7 +50,7 @@ In this section we give some motivation for the lecture.
50
50
51
51
### Introduction: light tails
52
52
53
- Most commonly used probability distributions in classical statistics and
53
+ Most {doc} ` commonly used probability distributions <prob_dist> ` in classical statistics and
54
54
the natural sciences have "light tails."
55
55
56
56
To explain this concept, let's look first at examples.
@@ -146,15 +146,15 @@ Have you ever wondered why not?
146
146
After all, there are 8 billion people in the world!
147
147
148
148
In essence, the reason we don't see such draws is that the distribution of
149
- human high has very light tails.
149
+ human height has very light tails.
150
150
151
- In fact human height is approximately normally distributed .
151
+ In fact the distribution of human height obeys a bell-shaped curve similar to the normal distribution .
152
152
153
153
154
154
### Returns on assets
155
155
156
156
157
- But now we have to ask: does economic data always look like this ?
157
+ But what about economic data?
158
158
159
159
Let's look at some financial data first.
160
160
@@ -179,7 +179,7 @@ ax.set_xlabel('date', fontsize=12)
179
179
plt.show()
180
180
```
181
181
182
- This data looks different to the draws from the normal distribution.
182
+ This data looks different to the draws from the normal distribution we saw above .
183
183
184
184
Several of observations are quite extreme.
185
185
@@ -418,7 +418,7 @@ $$ G_E(x) = \exp(- \alpha x) $$
418
418
419
419
This function goes to zero relatively quickly as $x$ gets large.
420
420
421
- The Pareto distribution has CCDF
421
+ The standard Pareto distribution, where $\bar x = 1$, has CCDF
422
422
423
423
$$ G_P(x) = x^{- \alpha} $$
424
424
@@ -427,13 +427,14 @@ This function goes to zero as $x \to \infty$, but much slower than $G_E$.
427
427
``` {exercise}
428
428
:label: ht_ex_x1
429
429
430
- Show how the CCDF of the Pareto distribution can be derived from the CCDF of the exponential distribution.
430
+ Show how the CCDF of the standard Pareto distribution can be derived from the CCDF of the exponential distribution.
431
431
```
432
432
433
433
``` {solution-start} ht_ex_x1
434
434
:class: dropdown
435
435
```
436
- Letting $G_E$ and $G_P$ be defined as above yields
436
+ Letting $G_E$ and $G_P$ be defined as above, letting $X$ be exponentially
437
+ distributed with rate parameter $\alpha$, and letting $Y = \exp(X)$, we have
437
438
438
439
$$
439
440
\begin{aligned}
@@ -460,8 +461,8 @@ ax.legend()
460
461
plt.show()
461
462
```
462
463
463
- Here's a log-log plot of the same functions, which makes visual comparison a
464
- bit easier.
464
+ Here's a log-log plot of the same functions, which makes visual comparison
465
+ easier.
465
466
466
467
``` {code-cell} ipython3
467
468
fig, ax = plt.subplots()
@@ -685,7 +686,7 @@ plt.show()
685
686
686
687
### City size
687
688
688
- Here are plots of the city size distribution for the US and brazil in 2023 from world population review.
689
+ Here are plots of the city size distribution for the US and Brazil in 2023 from world population review.
689
690
690
691
The size is measured by population.
691
692
@@ -894,7 +895,7 @@ The heaviness of the tail in the wealth distribution matters for taxation and re
894
895
The same is true for the income distribution.
895
896
896
897
For example, the heaviness of the tail of the income distribution helps
897
- determine how much revenue a given tax policy will raise.
898
+ determine {doc} ` how much revenue a given tax policy will raise <mle> ` .
898
899
899
900
900
901
@@ -933,10 +934,7 @@ distribution](https://en.wikipedia.org/wiki/Log-normal_distribution) is
933
934
heavy-tailed because its moment generating function is infinite everywhere on
934
935
$(0, \infty)$.
935
936
936
- As claimed above, the Pareto distribution is also heavy-tailed.
937
-
938
- It is easy to see that, under the Pareto law, $\mathbb P\{ X > x\} $ satisfies {eq}` plrt ` .
939
-
937
+ The Pareto distribution is also heavy-tailed.
940
938
941
939
A distribution $F$ on $\mathbb R_ +$ is called ** light-tailed** if it is not heavy-tailed.
942
940
@@ -996,7 +994,7 @@ Let $X$ have a Pareto tail with tail index $\alpha$ and let $F$ be its cdf.
996
994
997
995
Fix $r \geq \alpha$.
998
996
999
- As discussed after {eq}` plrt ` , we can take positive constants $b$ and $\bar x$ such that
997
+ In view of {eq}` plrt ` , we can take positive constants $b$ and $\bar x$ such that
1000
998
1001
999
$$
1002
1000
\mathbb P\{X > x\} \geq b x^{- \alpha} \text{ whenever } x \geq \bar x
@@ -1005,13 +1003,13 @@ $$
1005
1003
But then
1006
1004
1007
1005
$$
1008
- \mathbb E X^r = r \int_0^\infty x^{r-1} \mathbb P\{ X > x \} x
1006
+ \mathbb E X^r = r \int_0^\infty x^{r-1} \mathbb P\{ X > x \} dx
1009
1007
\geq
1010
- r \int_0^{\bar x} x^{r-1} \mathbb P\{ X > x \} x
1011
- + r \int_{\bar x}^\infty x^{r-1} b x^{-\alpha} x .
1008
+ r \int_0^{\bar x} x^{r-1} \mathbb P\{ X > x \} dx
1009
+ + r \int_{\bar x}^\infty x^{r-1} b x^{-\alpha} dx .
1012
1010
$$
1013
1011
1014
- We know that $\int_ {\bar x}^\infty x^{r-\alpha-1} x = \infty$ whenever $r - \alpha - 1 \geq -1$.
1012
+ We know that $\int_ {\bar x}^\infty x^{r-\alpha-1} dx = \infty$ whenever $r - \alpha - 1 \geq -1$.
1015
1013
1016
1014
Since $r \geq \alpha$, we have $\mathbb E X^r = \infty$.
1017
1015
0 commit comments