2

The famous biologist Henk de Rijn has come up with a skill test for chimpanzees. We assume that each chimpanzee has a probability $$ to pass the test, independent from previous attempts and from other monkeys. Let $_$ be the number of attempts that chimpanzee $$ needs to pass. Furthermore, $ = \overline{X}_$ is an estimator for $1/$. Compute the mean squared error of $$ .

So let $T$ be an estimator for a parameter $1∕$. The $MSE$ of $T$ is $MSE(T)=\operatorname{Var}(T) + (E[T] − 1∕)^2$, where$(E[T] − 1∕)^2$ is the bias.
In this case the $E[T]=E[\overline{X}_]=\mu$ and $\operatorname{Var}(T)=\operatorname{Var}(\overline{X}_)=\dfrac{\sigma^2}{n}$.
Now my question is: which distribution should I use?
I think that I think that is a Binomial but it also make sense to use a Geometric Distribution, so then the estimator $T$ will be unbiased and the $\displaystyle\operatorname{MSE}(T)=\operatorname{Var}(T)=\frac{1-p}{p^2}*\frac{1}{n}$, is it right?

Adrian Keister
  • 10,099
  • 13
  • 30
  • 43

1 Answers1

1

Each $X_i$ follows a Geometric distribution.

ie $X_i ~ Geom(p)$, and $T=\frac{X_1+...+X_n}{n}$, and the $X_i$s are independent and identically distributed, ie $E(T)=\frac{1}{p}$. Therefore, $MSE(T)$ is just $Var(T)$, and since the variance of a sum is the sum of the variances when dealing with independent random variables, then $Var(T)=Var(\frac{X_1+...+X_n}{n})=\frac{1}{n^2}$$(Var(X_1)+...+Var(X_n))=\frac{1}{n}\frac{p}{(1-p)^2}$.

So yes, it is correct.

Locally unskillful
  • 2,727
  • 3
  • 10
  • 19