Distribution of Sums
If X and Y are random variables, what is the distribution of X+Y?
Discrete Case
The PMF of S=X+Y:
P(S=s)=∑xP(X=x,Y=s−x)
If independent:
P(S=s)=∑xP(X=x)P(Y=s−x)
This is a convolution of the PMFs.
Continuous Case
The PDF of S=X+Y:
fS(s)=∫−∞∞f(x,s−x)dx
If independent:
fS(s)=∫−∞∞fX(x)fY(s−x)dx
Known Sums
Sum of Independent Binomials (Same p)
X∼Bin(n1,p),Y∼Bin(n2,p)
X+Y∼Bin(n1+n2,p)
Intuition: Adding two independent counts from Bernoulli trials with same p.
Sum of Independent Poissons
X∼Pois(λ1),Y∼Pois(λ2)
X+Y∼Pois(λ1+λ2)
Intuition: Merging two independent event streams.
Sum of Independent Normals
X∼N(μ1,σ12),Y∼N(μ2,σ22)
X+Y∼N(μ1+μ2,σ12+σ22)
Intuition: Adding Gaussian noise gives Gaussian noise.
Sum of Independent Exponentials (Same Rate)
X1,…,Xn∼Exp(λ) independent
∑i=1nXi∼Gamma(n,λ)
Moment Computations
Regardless of distribution:
Expectation
E[X+Y]=E[X]+E[Y]
Always holds (no independence needed).
Variance
Var(X+Y)=Var(X)+Var(Y)+2Cov(X,Y)
If independent:
Var(X+Y)=Var(X)+Var(Y)
Example: Sum of Dice
Roll two fair dice. X,Y∈{1,…,6} uniform, independent.
S=X+Y has range {2,3,…,12}.
P(S=7)=∑x=16P(X=x)P(Y=7−x)=∑x=1661⋅61=366=61
P(S=2)=P(X=1)P(Y=1)=361
Convolution Visualisation
The sum distribution is obtained by “sliding” one distribution past the other and multiplying.

Linear Combinations
For constants a and b:
E[aX+bY]=aE[X]+bE[Y]
Var(aX+bY)=a2Var(X)+b2Var(Y)+2abCov(X,Y)
If independent:
Var(aX+bY)=a2Var(X)+b2Var(Y)
Sum of I.I.D. Variables
Let X1,…,Xn be i.i.d. with mean μ and variance σ2.
Define Sn=∑i=1nXi and Xˉ=Sn/n.
E[Sn]=nμ,Var(Sn)=nσ2
E[Xˉ]=μ,Var(Xˉ)=nσ2
Averaging reduces variance proportionally to n.
Summary
| Variables | Sum Distribution | Sum Mean | Sum Variance |
|---|
| Binomial (same p) | Binomial | (n1+n2)p | (n1+n2)p(1−p) |
| Poisson | Poisson | λ1+λ2 | λ1+λ2 |
| Normal | Normal | μ1+μ2 | σ12+σ22 |
| General | Convolution | E[X]+E[Y] | Always additive if independent |