[Math] Find the asymptotic distribution of the MME and MLE.

statistics

Question: Let $X_1, …, X_n$ be i.i.d random variables with the density function
$$f(x|\theta) = (\theta+1)x^\theta, 0≤x≤1$$

Find the asymptotic distribution of the MME and MLE.

My Guess:

I know from doing a previous part in the question that the:

a) MME: $\hat \theta$ = $\frac{1-2\bar X}{\bar X-1}$

b) MLE: $\hat \theta$ = $-1 -$ $\frac{n}{\sum_{i=1}^n \log (X_i)}$

However, I'm a little confused as to what the question is asking for in finding the asymptotic distribution.

Any help is appreciated. Thanks!

Best Answer

They are asking for an approximate distribution for $\hat \theta$ as $n\to \infty.$

A classic example of an asymptotic distribution is the central limit theorem, which is an asymptotic distribution for the sample mean $\bar X.$ The central limit theorem says that provided $\mathrm{Var}(X)$ exists and is less than infinity, the sample mean is approximately normally distributed with the correct mean and a variance that goes down as $1/n$: $$\bar X \sim N\left( E(X),\frac{\mathrm{Var}(X)}{n}\right).$$

The mathematically rigorous statement this is code for is that $$ \frac{\sqrt{n}(\bar X-E(X))}{\sqrt{\mathrm{Var}(X)}} \rightarrow_D N(0,1)$$ where $\rightarrow_D$ denotes convergence in distribution.

Now your method of moments estimator is a nice function of your sample mean. It turns out that a nice function of an asymptotically normal variable is itself asymptotically normal: $$ g(\bar X)\sim N\left(g(E(X)), \frac{\mathrm{Var}(X)(g'(E(X))^2}{n}\right)$$ (for reasons I don't understand this is called the "delta method").

So it's just a matter of computing $E(X)$ and $\mathrm{Var}(X)$ for your distribution. Then for part $a$ you have $ \hat \theta = g(\bar X)$ where $$g(x)=\frac{1-2x}{x-1},$$ so you just need to compute the derivative and then plug everything into the formula.

For the MLE, it's in terms of the sample mean of $\log(X_i)$ but $\log(X_i)$ also follows the central limit theorem (you just need to compute its mean and variance) so you can apply the delta method to it too to get an asymptotic distribution for the MLE.