Expected Value and Variance of Sums

When you’ve already found the expected value and variance of a data set, it’s good to know that you won’t have to calculate everything all over again if you make small changes to the data. You can actually use the expected value and variance you’ve already found by inserting them into certain formulas, which I will show you here.

Theory

Sum of Variables

A sum of random variables might look like this:

Z = aX + Y + b

where X and Y are random variables that are independent of each other, and a and b are constants.

When you have values for E (X), E (Y ), Var (X) and Var (Y ), you can use them directly if you have a sum of variables. An otherwise gnarly calculation becomes a lot easier with these formulas:

Formula

Useful Formulas with the Sum of Variables

E (Z) = E (aX + Y + b) = E (aX) + E (Y + b) = a E (X) + E (Y ) + b Var (Z) = Var (aX + Y + b) = Var (aX) + Var (Y + b) = a2 Var (X) + Var (Y ) Note! The constant term disappears when you find the variance.

Example 1

Given Z = 3X + Y + 6 and E (X) = 7, E (Y ) = 16, Var (X) = 2 and Var (Y ) = 3, find the expected value E (Z) and the variance Var (Z).

You find the expected value by inserting what we know directly into the formulas:

E (Z) = E (3X + Y + 6) = E (3X) + E (Y + 6) = 3 E (X) + E (Y ) + 6 = 3 7 + 16 + 6 = 43

You find the variance by doing the same thing:

Var (Z) = Var (3X + Y + 6) = Var (3X) + Var (Y + 6) = 32 Var (X) + Var (Y ) = 9 2 + 3 = 21

Want to know more?Sign UpIt's free!