Consider the problem of combining N people into 3 seats; denoted by NC3:
In tabular, the total permutation can be represented as:
ABC BAC CAB DAB EAB FAB GAB HAB IAB JAB.........
ACB BCA CBA DBA EBA FBA GBA HBA TBA JBA.........
... ... ... ... ... ... ... ... ... ... ........
... ... ... ... ... ... ... ... ... ... .......
Rather than using the formula, taking this generally, There are N seats for the first position, N-1 for the second and N-2 for the third position. So, there are N(N-1)(N-2) possible permutations, but to make the order irrelevant(i.e. combination), we must divide it by 6?(because of the possible permutation of the three letters itself) . And this gives the correct answer, However:
For instance,
In taking ABC from the N letters(considering there are more than just 26 letters, ex: A1, there would be: ABC, ACB, BAC, BCA, CAB, CBA, permutations of it. So dividing the total possibilities would make sense. But, there are N letters, so there would be say group of DEF such 6 permutations. Shouldn't we divide the product of N(N-1)(N-2) by (3!3!)? Where does my logic fail?
EDIT: to reformulate, the 3! is for one group of objects, right? to cancel the repititions of one group,e.g. ABC, we divide it by 6, so to cancel the repetitions of 2 such groups, e.g. ABC, DEF(these have a sum total of 12 permuted outputs), shouldn't we divide by (3!3!)?