Consider a sample $X_1, \ldots, X_n$ with density function: $$ f(x;\theta) = (\theta+1)x^\theta; \ 0 \leq x \leq 1 $$
I want to find the asymptotic distribution of the method of moments estimator $\hat{\theta}_1$ for $\theta$. I have already calculated: $$ E[X] = \frac{\theta+1}{\theta+2} $$
And got $\theta_1$ solving for $\theta$: $$ \frac{\theta+1}{\theta+2} = \frac{1}{n}\sum_{i=1}^n X_i\\ \hat{\theta}_1 = \frac{2\bar{X} -1}{1-\bar{X}} $$
However, I am not sure how to apply the delta method to find its asymptotic distribution. In particular, I am not seeing clearly what $g$ would be in: $$ \sqrt{n}(g(\hat{\theta}_1) - g(\theta)) \rightarrow_D N(0, (g'(\theta))^2\sigma_\theta^2) $$
Intuitively I would think that this means that, the difference between the estimator and the actual value will behave as a normal distribution with the change of sample size, and go towards a mean of 0 with a large enough sample, so I don't see why I need to use a function $g$ ? Can I let $g(x) = x$ and just use the actual values for $\theta$ and $\theta_1$? In general, how should I choose this function $g$? Also, how is $\sigma_\theta^2$ supposed to be calculated? My guess is that it should come from: $$ \begin{align} Var(X)&=\int_{0}^1x^2(\theta+1)x^\theta dx - \left(\frac{\theta+1}{\theta+2}\right)^2 = \frac{\theta+1}{\theta+3} - \left(\frac{\theta+1}{\theta+2}\right)^2\\ &= \frac{\theta+1}{(\theta+2)^2(\theta+3)} \end{align} $$ Any guidance is welcome!