Skip to main content

Posts

Showing posts from April, 2014

The Two Strategies

Follow @ProbabilityPuz Q: You are in a game where you get to toss a pair of coins once. There are two boxes (A & B) holding a pair each. Box A's coins are fair however B's coins are biased with probability of heads being \(0.6\) and \(0.4\) respectively. You are paid for the expected number of heads you will win. Which of the boxes should you pick? Machine Learning: The Art and Science of Algorithms that Make Sense of Data A: The expected number of heads if you chose box A is easy to calculate as $$ E(\text{heads}| A) = \frac{1}{2} + \frac{1}{2} = 1 $$ However the expected number of heads if you chose box B is also the same $$ E(\text{heads}| B) = \frac{4}{10} + \frac{6}{10} = 1 $$ The average yield being the same could make one think that both boxes yield the same. However there is one difference, its the variance. The variance of a distribution of a random variable \(X\) is defined as $$ Var(X) = \sum_{i=0}^{N} (x_i - \bar{x})^{2}p_i $$ where