Let's say I want to find the $n$-fold convolution of $n$ iid binomial random variables. My question is regarding the probability of success $p$. Would $p$ be the same for each random variable in the sample or is the correct way to allow $p$ to vary, that is, probability of success for each $X_i$ is $p_i$ for all $i = 1,\dotsc,n$. If it's the latter, then I don't understand the concept of iid. If these random variables are iid, then the expected value (at least) will be the same for each $X_i$; but if $p_i$'s are not necessarily equal, how can it be claimed that the expected values are equal?
2026-03-26 16:56:57.1774544217
On
Question about convolution of iid random variables with an emphasis on the iid concept
496 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
There are 2 best solutions below
0
On
There's no such thing as the convolution of two random variables. Two distributions (ie probability measures on $\Bbb R$) have a convolution, but a distribution is not a random variable.
The notion of the convolution of two probability distributions has a lot to do with independence, nothing necessarily to do with "identically distributed": If $X$ and $Y$ are independent random variables then the distribution of $X+Y$ is the convolution of the distribution of $X$ with the distribution of $Y$. That holds regardless of whether $X$ and $Y$ are identically distributed (and it doesn't say anything about the non-existent "convolution" of $X$ and $Y$.)
Let's do it for $n=2.$ If, independently, $X_1, X_2 \sim \mathsf{Binom}(5, 1/3),$ then $Y = X_1 + X_2 \sim \mathsf{Binom}(10, 1/3).$ Intuitively, you can think of $X_1$ as the sum of the first five Bernoulli trials and $X_2$ as the sum of the second five. Perhaps the easiest formal proof is via moment generating functions. (The discussion extends to general $n$ without difficulty.)
The figure below was made by generating 100,000 realizations of $X_1, X_2,$ and $Y = X_1 + X_2,$ then making a histogram of the 100,000 sums $Y.$ Centers of open circles show the exact distribution of $\mathsf{Binom}(10, 1/3).$
R code for the sampling and the figure is shown below.