0

Let $X_1,X_2,..,X_N$ be independent identical samples from a Poission distribution with unknown parameter $\theta$

How would I find the sum of the distribution $X_1+X_2+X_3+..+X_N$ when n is finite. I looked up convolution but that only works for two random variables and I have multiple random variables and they are all poisson.

Fernando Martinez
  • 6,698
  • 19
  • 74
  • 108
  • Try proving by induction that $X_1 + \dots +X_N \sim \text{Poisson}(N\theta)$. The induction step will likely involve the total law of probability. – Matthew H. Dec 10 '20 at 20:04
  • There is also a way to do it with moment generating functions I think – Fernando Martinez Dec 10 '20 at 20:11
  • You should definitely be able to do with with MGFs and CFs, too, but I overlooked the part when you said $\theta$ was unknown. – Matthew H. Dec 10 '20 at 20:13
  • 1
    Since $\theta$ is unknown, lets regard $\theta$ as a (continuous) random variable $\Theta \sim f_{\Theta}$. Set $$S_N=X_1+ \dots +X_N$$ Notice how $S_N|\Theta=\theta\sim\text{Poisson}(N\theta)$ so for any $k=0,1,2,.\dots$ we have that $$p_{S_{N}}(k)=P(S_N=k)=\int_{-\infty}^{\infty}\bigg[e^{-N\theta}\cdot \frac{(N\theta)^k}{k!}\cdot f_{\Theta}(\theta)\bigg]d\theta$$ This is of course assumes you can use the fact that $S_N|\Theta=\theta\sim\text{Poisson}(N\theta)$ – Matthew H. Dec 10 '20 at 20:14

1 Answers1

0

This what I did not sure if it is right. $W=X_1+X_2+..+X_N$ we have $M_w(t)=E(e^{X_1+X_2+..+X_N})=E(e^{x_1t}*e^{x_2*t}*..e^{x_n*t})$ And this equals

$M_{X_1}(T)*M_{X_2}(T)*..*M_{X_N}(t)=[M_X(t)]^n=[e^{\theta(e^t-1)}]^n$

So now you $W~Poisson(n*\theta))$ which is the same as pmf $(e^{-n*\theta}(n*\theta)^x)/x!$

Fernando Martinez
  • 6,698
  • 19
  • 74
  • 108