The Pot Method

Revision as of 19:10, 4 April 2019 by Idefix (talk | contribs) (I am restoring what was here earlier.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Pot Method is a double-counting method used to evaluate series with binomial coefficients, especially those with a binomial coefficient and another term in terms of the dummy variable.

Scenario Consider the following scenario:

You have 100 red marbles and 100 blue marbles in a pot, throughly mixed up. If you draw 100 marbles, what is the expected number of blue marbles?

We know that $E(\text{Red Marbles}) = E(\text{Blue Marbles})$, by symmetry. Also, using some common sense, it also makes sense that $E(\text{Red Marbles})+E(\text{Blue Marbles})=100$, so $E(\text{Blue Marbles}) = 50$.

The other way to count this expected value is case-by-case based on the number of blue marbles.

k Blue Marbles: The number of blue marbles is k. The number of ways to do this is the number of ways is $\dbinom{100}{k} \cdot \dbinom{100}{100-k} = \dbinom{100}{k}^2$, as we want to choose $k$ blue marbles and $100-k$ red ones. The total number of ways to do this is $\dbinom{200}{100}$, so the expected value for this case is $\frac{1}{\dbinom{200}{100}} \cdot \dbinom{100}{k}^2$.

Summing from $k = 0$ to $k=100$, we get that \[E(\text{Blue Marbles}) = \frac{1}{\dbinom{200}{100}} \cdot \sum_{k=0}^{100} \binom{100}{k}^2k = 50 \Rightarrow \sum_{k=0}^{100} \dbinom{100}{k}^2k = 50 \cdot \dbinom{200}{100}.\] Sure enough, WA confirms this is true.

What about if we have 30 red marbles, 30 blue marbles, 30 green marbles, we pick 30, what is the expected number of blue ones?

Similarly, we find that $E(\text{Blue Marbles}) = 10$. Using our double counting approach, though:

k Blue Marbles: The number of blue marbles is k. We could have either $0$ red, $30-k$ green to $30-k$ red, $0$ green. There are $\dbinom{30}{k}$ ways to choose the blue marbles. Essentially, finding the total way for $k$ blue marbles is \[\sum_{j=0}^{30-k} \dbinom{30}{j}\dbinom{30}{30-k-j}\dbinom{30}{k}\] Using Vandermonde's identity, this is equal to $\dbinom{60}{30-k}\dbinom{60}{k}$. The total way is $\dbinom{90}{30}$, so our expected value for this case is $\frac{1}{\dbinom{90}{30}} \cdot \dbinom{60}{30-k}k\dbinom{60}{k}$. Thus, summing from $k=0$ to $k=30$, we get \[E(\text{Blue Marbles}) = \frac{1}{\dbinom{90}{30}} \cdot \sum_{k=0}^{30} \dbinom{60}{30-k}\dbinom{60}{k}k  = 10 \Rightarrow \sum_{k=0}^{30} \dbinom{60}{30-k}\dbinom{60}{k}k  = 10 \cdot \dbinom{90}{30}.\] WA confirms this.