0

I am currently trying to grasp the concept of Variance Sum Law where

variance(x + y) = variance(x) + variance(y)

I am not even sure if I understand it correctly so I tried to do a little practical example.

Correct me where my reasoning is wrong.

For 2 independent variables & values the calculated variance is as follows:

for measurements of x [9,5,13] variance = 10.67 for measurements of y [1,14, 2] variance = 34.89

Now according the law I would expect for:

[10 (9+1) , 19 (5 + 14) , 15 (13 +2)] variance = 10.67 + 34.89 but after putting it to variance calculator I get the value 13.56.

Seems I am totally not getting what this is about. Can you show me where is my reasoning bad?

ps-aux
  • 101
  • 2

1 Answers1

1

As others have noted, $\text{Var}(X + Y) = \text{Var}(X) + \text{Var}(Y)$ only holds for $X$ and $Y$ uncorrelated, but you're pairing them in a systematic way which isn't expected to give zero correlation. Try pairing each value from the set $x$ with every value from the set $y$, taking the sum and then find the variance of this distribution.

dsaxton
  • 11,397
  • 1
  • 23
  • 45