Binomial Coefficient vs Binomial Distribution

Both terms below come up in the same part of the course, and students mix them up. Here is each one defined on its own, side by side, so you can see where they part company.

Binomial coefficient

Random variables and distributions

The binomial coefficient, read n choose k, counts how many ways k successes can occur among n trials when the order does not matter.

The binomial coefficient (nk)\binom{n}{k} (read "n choose k") counts how many subsets of size kk can be drawn from nn distinct items, which is the same as counting how many arrangements of kk successes and nkn - k failures fit into a sequence of nn trials. The formula is (nk)=n!k!(nk)!\binom{n}{k} = \frac{n!}{k!(n-k)!}, with 0!0! defined to equal 1 and kk a whole number from 0 to nn.

Take 5 free throws and ask in how many ways exactly 2 of them could be the makes: (52)=5!2!3!=1202(6)=10\binom{5}{2} = \frac{5!}{2!\,3!} = \frac{120}{2(6)} = 10. Those 10 orders are what the coefficient contributes to a probability. If the shooter makes 70 percent of her attempts, the chance of exactly 2 makes is 10(0.7)2(0.3)3=10(0.49)(0.027)=0.132310(0.7)^2(0.3)^3 = 10(0.49)(0.027) = 0.1323.

The error to name is treating the coefficient as a probability. "(105)=252\binom{10}{5} = 252, so the probability is 252" is wrong twice over: 252 is a count of orders, and no probability can exceed 1. Nothing about chance enters until that count is multiplied by pk(1p)nkp^k(1-p)^{n-k}, which is the probability of one particular order.

The second slip is using the ordered count instead. Picking 2 of 5 shots in order gives 5×4=205 \times 4 = 20 possibilities, but that counts "first and third" separately from "third and first" even though the pair of makes is identical. Dividing by the 2!=22! = 2 orderings of the same pair returns 10. The k!k! in the denominator is exactly that correction, and it is the whole difference between a permutation count and a combination count.

Two facts fall straight out of the formula. It is symmetric, (nk)=(nnk)\binom{n}{k} = \binom{n}{n-k}, because choosing which kk trials succeed is the same act as choosing which nkn - k fail, so (52)=(53)=10\binom{5}{2} = \binom{5}{3} = 10. And (n0)=(nn)=1\binom{n}{0} = \binom{n}{n} = 1, since there is one way for every trial to fail and one way for every trial to succeed. The distribution built on it is topic 2.10 of Unit 2.

Full entry for binomial coefficient

Binomial distribution

Random variables and distributions

The binomial distribution gives the probability of a set number of successes in a fixed number of independent trials with a constant success probability.

A binomial distribution counts successes across a fixed number of trials that are binary, independent, and identical in success probability. Write it XB(n,p)X \sim B(n, p): nn trials, success probability pp on each one, and XX the number of successes, which can be any whole number from 0 to nn. The probability of exactly kk successes is P(X=k)=(nk)pk(1p)nkP(X = k) = \binom{n}{k} p^k (1-p)^{n-k}, where (nk)\binom{n}{k} (n choose k) counts the orders in which those kk successes could fall. The mean is μX=np\mu_X = np and the standard deviation is σX=np(1p)\sigma_X = \sqrt{np(1-p)}.

Flip a fair coin 10 times, so n=10n = 10 and p=0.5p = 0.5. Then P(X=6)=(106)(0.5)6(0.5)4=2101024=0.2051P(X = 6) = \binom{10}{6}(0.5)^6(0.5)^4 = \frac{210}{1024} = 0.2051. The mean is μX=10(0.5)=5\mu_X = 10(0.5) = 5 heads and the standard deviation is σX=10(0.5)(0.5)=2.51.581\sigma_X = \sqrt{10(0.5)(0.5)} = \sqrt{2.5} \approx 1.581 heads.

Now the error that costs the most marks: "so the probability of 6 or more heads is 0.2051." It is not. That number is the probability of exactly 6. At least 6 means 6, 7, 8, 9 or 10, and adding those five probabilities gives 0.3770, nearly double. Circle the words at least, at most, more than and fewer than before any arithmetic starts, because the formula answers only the exactly question and every other question is assembled out of it.

Independence is the condition that breaks most often in practice. Deal 10 cards from a deck without replacement and the chance of a heart shifts with every card removed, so the count of hearts is not binomial. It is close enough to treat as binomial when the sample is a small fraction of the population, which is what the 10 percent condition checks.

The binomial distribution is topic 2.10 of Unit 2, Probability, Random Variables, and Probability Distributions.

Full entry for binomial distribution

Where each one fits in the course