10 pts Numbers are drawn from the set of integers 1 2 3
(10 pts) Numbers are drawn from the set of integers {1, 2, 3, . . . , 21} uniformly at random, without replacement. Let X be the number of draws among the first ten draws that are divisible by seven.
(a) (5 pts) What is E(X)?
(b) (5 pts) What is Var(X)?
Solution
numbers are drawn without replacement is equivalent to 10 numbers drawn at random at once
Thus,
P(X = 0) = all numbers selected from the non-multiples of 7
= 18C10 / 21C10
= 33/266
P(X = 1)
= 18C9 * 3C1 / 21C10
= 55/133
P(X = 2)
= 18C8 * 3C2 / 21C10
= 99/266
P(X = 3)
= 18C7 * 3C3 / 21C10
= 12/133
Thus, expected value = 0(33/266) + 1(55/133) + 2(99/266) + 3(12/133)
= 10/7
E[X] = 10/7
Now,
Var[X] = (33/266)*[0 - 10/7]2 + (55/133)*[1 - 10/7]2 + (99/266)*[2 - 10/7]2 + (12/133)*[3 - 10/7]2
= 33/49
Hope this helps.
