I am working on a problem where it says that we have 100 people and we are going to make pairs of 2 out of those people. how many ways are there to make such pairs?
per my understanding, we can use the permutation (100 2) to make such subsets. but this does not align or seems faulty.
For example, I have a set of 6 people {A,B,C,D} - using a Permutation I can get P(4,2) = 12
by permutation formula, I could have 12 pairs, but I could get only 3 such sets out of 4 people making pairs.
- {a,b},{c,d}
- {a,c},{d,b}
- {a,d},{c,b}
so, what should be the right way to solve this problem?