- #1
CGandC
- 326
- 34
- TL;DR Summary
- When does ## { n \choose k } ## represent set of lists?
I'm not fully aware when ## { n \choose k } ## represents a set of subsets of cardinality ## k ## and when does it represent a set of lists of size ## k ##. For example, look at the following two problems:
Problem 1: How many 7-digit binary strings have three 1's? Answer: ## { 7 \choose 3 } ##=35 . Explanation: My 7-element set is {1,2,3,4,5,6,7} corresponding to the indices of the digits which form the string (i.e., 3 corresponds to the third digit). Now we choose three elements out of this set, corresponding to the spots of the string where a "one digit" should appear.
Problem 2: In how many ways can ## n ## people be seated in a row if person ## \beta ## is to the right of ## \alpha ## ( not necessarily adjacent )? Answer: ## {n \choose 2} (n-2)! ## which is also ## \frac{n!}{2} ##. Explanation: the ## { n \choose 2 } ## comes from choosing two distinct places for ## \alpha ## and ## \beta ## and seating them the correct way around. And the ## (n-2)! ## comes from seating the rest of the ## n-2 ## people in the left-over seats after we seated ## \alpha ## and ## \beta ##.
My difficulty:
( Problem 1 ) The set of all 7-digit binary strings is of the form ## \{ (1,1,1,0,0,0,0) , (1,0,1,1,0,0,0,0), ... \} ## . Note the size of this set is ## { 7 \choose 3 } = 35 ##
( Problem 2 ) The set of all the spots where ## \alpha ## and ## \beta ## can sit is of the form ## J_n=\{(a,b):a \in I_n,b \in I_n, a<b\} ## where ##
I_n=\{1,2,\ldots,n\} ## is the set of seat indices. An example of set ## J_n ## is ## \{ (1,3), (5,8),... \} ##. Note the size of set ## J_n ## is ## { n \choose 2 } ##.
The problem as I see it is - In all those sets above we have lists and not subsets. I learned that ## { n \choose k } ## represents a set of subsets of cardinality ## k ## and not a set of lists of size k. However, why in the sets above ( which we got from choosing ) we have sets of lists and not sets of subsets? Am I wrong that ## { n \choose k } ## gives me subsets? ( and that it should actually give me lists? )
Problem 1: How many 7-digit binary strings have three 1's? Answer: ## { 7 \choose 3 } ##=35 . Explanation: My 7-element set is {1,2,3,4,5,6,7} corresponding to the indices of the digits which form the string (i.e., 3 corresponds to the third digit). Now we choose three elements out of this set, corresponding to the spots of the string where a "one digit" should appear.
Problem 2: In how many ways can ## n ## people be seated in a row if person ## \beta ## is to the right of ## \alpha ## ( not necessarily adjacent )? Answer: ## {n \choose 2} (n-2)! ## which is also ## \frac{n!}{2} ##. Explanation: the ## { n \choose 2 } ## comes from choosing two distinct places for ## \alpha ## and ## \beta ## and seating them the correct way around. And the ## (n-2)! ## comes from seating the rest of the ## n-2 ## people in the left-over seats after we seated ## \alpha ## and ## \beta ##.
My difficulty:
( Problem 1 ) The set of all 7-digit binary strings is of the form ## \{ (1,1,1,0,0,0,0) , (1,0,1,1,0,0,0,0), ... \} ## . Note the size of this set is ## { 7 \choose 3 } = 35 ##
( Problem 2 ) The set of all the spots where ## \alpha ## and ## \beta ## can sit is of the form ## J_n=\{(a,b):a \in I_n,b \in I_n, a<b\} ## where ##
I_n=\{1,2,\ldots,n\} ## is the set of seat indices. An example of set ## J_n ## is ## \{ (1,3), (5,8),... \} ##. Note the size of set ## J_n ## is ## { n \choose 2 } ##.
The problem as I see it is - In all those sets above we have lists and not subsets. I learned that ## { n \choose k } ## represents a set of subsets of cardinality ## k ## and not a set of lists of size k. However, why in the sets above ( which we got from choosing ) we have sets of lists and not sets of subsets? Am I wrong that ## { n \choose k } ## gives me subsets? ( and that it should actually give me lists? )