arorag wrote:HI Stuart,
Please can you explain the concept of deplicates in per./com./prob. with some example.
Thanks in advance
Duplicates occur when you count the same arrangement more than once.
In combinations, this happens when we forget that order doesn't matter.
For example, let's say I want to choose a pair of people out of 4 possibilities, A B C and D.
If I were to say "well, there's 4 possibilities for the first person and 3 possibilities for the second person, so there's 4*3 = 12 possible pairs", I'd be double counting because I'm forgetting that the pair "AB" is the exact same as the pair "BA".
In permutations, duplicates happen when we have identical entities, i.e. not all the entities are unique.
For example, if I want to know all the possible ways to arrange the letters in the word "GMAT", the answer would simply be 4!.
However, if I want to know all the possible ways to arrange the letters in the word "KAPLAN" and use the same approach, I'd get an answer of 6!, which would be wrong, since "KAPLAN" has two As.
Let's call the As in Kaplan A(1) and A(2) and see what I mean.
KA(1)PLA(2)N and KA(2)PLA(1)N look exactly the same, but we've counted it as two separate arrangements.
In order to avoid duplications in permutation questions, you need to factor out the number of duplicates.
So, the true number of arrangements of "KAPLAN" is 6!/2!.
Let's look at some other examples:
DESSERT... 7!/2!2!, since we need to factor out 2 Es and 2 Ss.
DESSERTS... 8!/2!3!, since we need to factor out 2 Es and 3 Ss.
DESERTERS... 9!/3!2!2!, since we need to factor out 3 Es, 2 Ss and 2 Rs.
The basic formula is n!/r!s!t!... in which n is the total number of items and r, s, t, ... are the number of duplications.