0

How do I compute the summation at the end:

$$E(x) = \sum_{x=1}^\infty x.P(X=x) = \sum_{x=1}^{\infty} x \left(\frac{5}{6}\right)^{x-1}$$

Thomas Andrews
  • 177,126
Joyce
  • 361

1 Answers1

2

Recall the geometric series: $$\sum_{x=0}^{\infty} a^x = \dfrac1{1-a}$$ Differentiate the above with respect to $a$ on both sides to get $$\sum_{x=0}^{\infty} xa^{x-1} = \dfrac1{(1-a)^2}$$ Now plug in $a=\dfrac56$ to get what you want.

  • Thanks a lot. I have been trying geometric method but haven't thought of differentiating. – Joyce Oct 20 '13 at 15:07