Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

What is the Jeffreys prior for the geometric distribution?

share|improve this question

1 Answer

up vote 7 down vote accepted

The geometric distribution is given by:

$$p(X|\theta)=(1-\theta)^{X-1}\theta \;\;\; X=1,2,3,\dots$$

The log likelihood is thus given by:

$$\log[p(X|\theta)]=L=(X-1)\log(1-\theta)+\log(\theta)$$

Differentiate once:

$$\frac{\partial L}{\partial \theta}=\frac{1}{\theta}-\frac{X-1}{1-\theta}$$

And again:

$$\frac{\partial^{2} L}{\partial \theta^{2}}=-\frac{1}{\theta^{2}}-\frac{X-1}{(1-\theta)^{2}}$$

Take the negative expectation of this conditional on $\theta$ (called Fisher information), note that $E(X|\theta)=\frac{1}{\theta}$

And so we have:

$$I(\theta)=\frac{1}{\theta^{2}}+\frac{\theta^{-1}-1}{(1-\theta)^{2}}=\theta^{-2}\left(1+\frac{\theta}{1-\theta}\right)=\theta^{-2}(1-\theta)^{-1}$$

The jeffrey's prior is given by the square root of this:

$$p(\theta|I) \propto \sqrt{I(\theta)}=\theta^{-1}(1-\theta)^{-\frac{1}{2}}$$

share|improve this answer
2  
It's worth adding that this prior is improper. – cardinal Mar 29 '11 at 0:09
But this is only the prior, the posterior is always proper, as $X\geq 1$ – probabilityislogic Mar 29 '11 at 8:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.