I'm trying to solve a question where I have to find $V(\hat{\alpha})$ using the delta-method where $V$ is notation for variance and $\hat{\alpha}$ is the method of moment estimator for a beta distribution. To be more specific, I write down the question below:
Suppose $X_1, ..., X_n$ be a random sample from the following distribution,
$$f(x)=\alpha x^{\alpha -1}, 0<x<1\text{ and }\alpha>0.$$
- Let $\hat{\alpha}$ be the method of moment estimator. Obtain the $V(\hat{\alpha})$ using the delta-method.
I know that this function is just Beta distribution where $X\sim\mathrm{Beta}(\alpha,1)$. So the method of moment $E(X^k)=\frac{\Gamma(\alpha +1)\Gamma(\alpha +k)}{\Gamma(\alpha)\Gamma(\alpha +k+1)}$, where $\Gamma(\cdot)$ is a Gamma function.
But how do I get the variance of the method of moment using delta method? I am not sure how the usage of the delta method will get me the variance. Thank you.
In estimation by the method of moments, one sets the sample moment equal to the population moment and then solves that equation for the parameter to be estimated. Thus: $$ \frac{X_1 + \cdots + X_n} n = \overline X = \frac\alpha{\alpha+1}, $$ and then solving this for $\alpha,$ we get $$ \alpha = \frac{\overline X}{1 - \overline X}. $$ That is the estimator of $\alpha$ by the method of moments.
– Michael Hardy Mar 25 '21 at 03:09