Can someone explain why does not variance add in general? Like this: $$Var(X+Y) ≠ Var(X)+Var(Y)$$
2026-04-03 02:31:17.1775183477
On
On
Why does not variance add in general?
70 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
5
There are 5 best solutions below
5
On
\begin{align} Var(X+Y) &= Cov(X+Y, X+Y) \\ &= Cov(X,X)+Cov(X,Y)+Cov(Y,X)+Cov(Y,Y) \\ &= Var(X)+ Var(Y)+2 Cov(X,Y) \end{align}
In general, convariance between $X$ and $Y$ need not be $0$.
2
On
The general formula is $$\text{Var}(X+Y) = \text{Var}(X) + \text{Var}(Y) + 2 \text{Cov}(X,Y),$$ so the equality in your question fails precisely when $\text{Cov}(X,Y) \ne 0$.
Because the formula for variance does not let you add it. While Expectation ($E[X]$) is linear, this does not mean that variance is.
$$ Var(X) = E[X^2] - E[X]^2 $$ which is clearly not linear, since
$$ Var(X + Y) = E[(X + Y)^2] - (E[X + Y])^2 \\ = E[X^2 + 2XY + Y^2] - (E[X] + E[Y])^2 \\ = E[X^2] + 2E[XY] + E[Y^2] - E[X]^2 - E[Y]^2 - 2E[X]E[Y] $$
while
$$ Var(X) + Var(Y) = E[X^2]- E[X]^2 + E[Y^2] - E[Y]^2 $$