Skip to content

A simple lecture on maximum likelihood #117

@jstac

Description

@jstac

We motivate as follows:

The task is to estimate the revenue raised by a wealth tax. The proposed wealth tax is $h(w)$, where $h$ is some function and $w$ is wealth.

  • e.g., $h(w) = 0.05 w$ means a 5% tax on wealth.

With $n$ as the population size, total revenue is

$$ T = \sum_{i=1}^n h(w_i) $$

The problem is that wealth is not observed for all individuals. We only have a sample $w_1, \ldots, w_m$ from $m$ individuals.

  • supply this data set and histogram it

One idea for calculating revenue is as follows.

We assume that weath of each individual is a draw from a distribution with density $f$.

We estimate $f$ and then approximate $T$ via

$$ T = \sum_{i=1}^n h(w_i) = n \frac{1}{n} \sum_{i=1}^n h(w_i) \approx n \int_0^\infty h(w) f(w) dw $$

If we work with log wealth $\hat w_i = \ln w_i$, with $\hat f$ being the density of $\hat w_i$, then we could calculate as

$$ T = \sum_{i=1}^n h( \exp(\ln(w_i))) = n \frac{1}{n} \sum_{i=1}^n h(\exp(\hat w_i )) \approx = n \int_0^\infty h(\exp(\hat w)) \hat f(w) dw $$

However, perhaps it's best to start with the first case (estimate $f$) rather than the second case (estimate $\hat f$) to begin with, since it's easier for students to understand.

The difficulty is: how to choose and estimate $f$?

Now we step through a sequence of density classes, in each case estimating $f$ via max likelihood.

I suggest

  1. Lognormal distribution
  2. Pareto distribution

In both cases, the wikipedia page shows the maximum likelihood estimates of the parameters.

We will emphasize that different choices of $f$ lead to different values of $T$.

A key message is that we need to model wealth as heavy tailed, since light tails and heavy tails will get very different numbers.

Optionally, we can add in nonparametric kernel density estimation.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions