Why does $\binom {3} {1} =\binom {3} {2}$? Is it just a coincidence?
Why does $\binom {3} {1} =\binom {3} {2}$?
143 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail AtThere are 7 best solutions below
On
Always $\binom{n}{k}=\binom{n}{n-k}$ (when $0 \le k \le n.)$ Because choosing a $k$ element set from $n$ things is the same as choosing its complement.
So also $\binom{10}{3}=\binom{10}{7}$ and one can generate lots of these.
On
No, it’s not. We have
$${n \choose r} = {n \choose n-r}$$
for non-negative values of $r$ with $r \leq n$, which can be verified through the definition ${n \choose r} = \frac{n!}{r!(n-r)!}$:
$$\frac{n!}{r!(n-r)!} = \frac{n!}{(n-r)!(n-(n-r))!}$$
$$\frac{n!}{r!(n-r)!} = \frac{n!}{(n-r)!r!}$$
On
$\binom{3}{1}$ is calculating the number of ways to choose one object out of a set of three. $\binom{3}{2}$ is calculating the number of ways to choose two objects out of a set of three.
Imagine I'm looking at a group of three people: Alice, Bob, and Charlotte. Let's say I want to choose two of them, and I've decided that those two are going to be Alice and Bob. There are two ways for me to say that - one way is the obvious, "I'm going to choose Alice and Bob." The other way is to talk about who I'm not choosing: "I'm going to choose everyone except Charlotte."
More generally, when picking two objects out of a group of three, we can phrase that as deciding which one is going to be left over. In other words, choosing which two to take is the same as choosing which one not to take. There are $\binom{3}{2}$ ways to choose which two to take; there are $\binom{3}{1}$ ways to choose which one not to take. Since those mean the same thing, $\binom{3}{1} = \binom{3}{2}$.
It is not just a coincidence. Nothing I just said really had anything to do with the numbers $3$, $2$, and $1$. What mattered was that when $2$ were chosen out of a group of $3$, $1$ was left over. We can generalize that: when $k$ are chosen out of a group of $n$, $n - k$ will be left over; so choosing $k$ out of $n$ is the same as excluding $n - k$ out of $n$. In other words:
$$\binom{n}{k} = \binom{n}{n - k}$$
On
Imagine you have a group of $n$ objects, and you choose $k$ of those objects to remove.
However, instead of considering it like this, consider it as dividing the group of $n$ objects into two groups, one of which has $k$ objects (and consequently, the other has $(n-k)$ objects).
We can flip this scenario and remove $(n-k)$ objects, leaving $k$ behind.
Can you see how these two scenarios are the same?
The binomial coefficient is calculated as :
$$\binom{n}{k}= \frac{n!}{k!(n-k)!}$$
It's easy to see why the two binomial coefficients mentioned are equal, based on the definition.
In general, it always holds that :
$$\binom{n}{k}=\binom{n}{n-k}, \quad 0\leq k \leq n$$
Essentialy, what this means is that choosing an element $k$ from $n$ elements is the same as not choosing $n-k$ elements from $n$ elements.