Originally, I was attempting to find a Method of Moments estimator for $\lambda$ given $X_i \sim Geom(e^{-\lambda})$ s.t. $f_\lambda(x) = e^{-\lambda}(1 - e^{-\lambda})^x$.
I found it to be $\hat{\lambda} = \log\left(1 + \frac{\sum_{i=1}^n X_i}{n}\right)$. I am now attempting to verify if it is unbiased ($E\left[\hat{\lambda}\right] \stackrel{?}{=} \lambda$). This leads to a super nasty summation:
$$ E\left[\log\left(1 + \frac{\sum_{i=1}^n X_i}{n}\right)\right] = \sum_{k=0}^\infty \log\left(1 + \frac{k}{n}\right)\cdot \underbrace{\pmatrix{k + n - 1 \\ k} \cdot (1 - e^{-\lambda})^k e^{-n\lambda}}_\text{Negative binomial pmf} $$
Note that $\sum X_i \sim NB(n, e^{-\lambda})$.
My thoughts: I am convinced that the sum is either divergent or not at all equal to $\lambda$.
- Are there any tools I could use to indirectly state this?
- Is there a feasible pen/paper way to calculate the exact sum or should this be left for something like Mathematica?