The reason we don’t use absolute values for calculating variance

353 viewsOther

I know the reason for using squared values is so the values don’t get cancelled out. Why not absolute values? I get it when calculating error metrics that squaring can punish the model more for bigger errors, but I don’t get the reason here.

In: Other

7 Answers

Anonymous 0 Comments

Variances have a lot of useful properties, re: distributions and random variables that are easy to calculate. For some of these measurements, the mean absolute difference might have similar properties, but usually variance is cleaner and have more fundamental properties.

For example, for independent random variables X and Y:

Mean(X+Y)=Mean(X)+Mean(Y)

Mean(X-Y)=Mean(X)-Mean(Y)

Var(X+Y)=Var(X)+Var(Y)

Var(X-Y)=Var(X)+Var(Y)

You are viewing 1 out of 7 answers, click here to view all answers.