Chapter 6 Counting(计数)¶
小学奥数?
The Basics of Counting(计数基础)¶
-
Product Rule(乘法原理): If there are ways to do the first task and ways to do the second task, then there are ways to do both tasks.
-
Sum Rule(加法原理): If there are ways to do the first task and ways to do the second task, and the tasks cannot be done at the same time, then there are ways to do one of the tasks.
-
The Sum Rule for Counting(求和法则): If a set is the union of disjoint subsets , then .
-
Subtraction Rule(减法原理): If there are ways to do a task and other ways to do the task, then there are minus the number of ways that are duplicated. (实则就是容斥原理)
-
Division Rule(除法原则): There are n/d ways to do a task if it can be done using a procedure that can be carried out in n ways, and for every way w, exactly d of the n ways correspond to way w.
The Pigeonhole Principle(鸽巢原理)¶
即抽屉原理
-
The Pigeonhole Principle(鸽巢原理): If is a positive integer and or more objects are placed into boxes, then there is at least one box containing two or more of the objects.
-
Generalized Pigeonhole Principle(广义鸽巢原理): If objects are placed into boxes, then there is at least one box containing at least objects.
- proof: by contraposition, if all boxes contain less than objects, then the total number of objects is less than , which is a contradiction.
Eg
在用鸽巢原理证明时,最关键的是要找到一个合适的“盒子”和“鸽子”的对应关系。例如下面的例子:
Permutations and Combinations(排列与组合)¶
- Permutation(排列): An arrangement of objects from a set of objects is called a permutation of objects taken at a time. The number of permutations of objects taken at a time is denoted by
- Combination(组合): An arrangement of objects from a set of objects, where the order of the objects does not matter, is called a combination of objects taken at a time. The number of combinations of objects taken at a time is denoted by .
剩下的希望能请神请到高三的自己
Binomial Coefficients(二项式系数)¶
- Binomial Theorem(二项式定理): For any positive integer and any real numbers and ,
- Binomial Coefficients(二项式系数): is the coefficient of in the expansion of ,also denoted by .
- Corollary(推论1):
- Corollary(推论2):
- proof:
-
Corollary(推论3):
- proof:
-
Pascal's Identity(帕斯卡恒等式):
- proof:
其实就是杨辉三角。
- Vandermonde's Identity(范德蒙恒等式):
Proof
也可以理解为从分别有m和n个元素的集合A和B中选r个元素.
- Corollary(推论):
- proof:
- Corollary(推论):
- proof:
Generalized Permutations and Combinations(广义排列与组合)¶
-
Permutations with Repetition(重复排列)
The number of permutations of objects taken at a time with repetition allowed is .
-
Combinations with Repetition(重复组合)
The number of combinations of objects taken at a time with repetition allowed is
高中的“隔板法”:n个物体放进r个盒子,允许为空。
-
Permutations with Indistinguishable Objects(相同物体的排列)
The number of permutations of objects taken at a time, where there are indistinguishable objects of type 1, indistinguishable objects of type 2, ..., and indistinguishable objects of type k, is .
-
Distributing Objects into Boxes(将物体分配到盒子中)
高中“隔板法”plus
-
Distinguishable Objects and Distinguishable Boxes(可区分的物体和盒子)
objects into boxes:
-
Indistinguishable Objects and Distinguishable Boxes(不可区分的物体和可区分的盒子)
并没有闭公式,要分类讨论; 但是有求和公式:
n个物体放进k个盒子,每个盒子至少有一个物体的方案数为:
Stirling numbers of the second kind
将n元集合写成k个非空disjoint的方法数,详见这里
-
Indistinguishable Objects and Indistinguishable Boxes(不可区分的物体和盒子)
只能枚举了貌似
-
Generating Permutations and Combinations(生成排列与组合)¶
Generating Permutations(生成排列)¶
- Lexicographic Order(字典序): A permutation of a set of objects is said to be in lexicographic order if for some k, and .例如:
Generating Combinations(生成组合)¶
-
To generate all combinations of the elements of a finite set which has elements:
- Use a binary bit string to represent a combination of the set.
- The bit string has bits, and the th bit is 1 if the th element is in the combination, and 0 otherwise.
-
To generate all r-combinations of the elements of a finite set which has elements:
- Find the last element in the combination that cannot be increased.
- Replace the next element,etc.
创建日期: 2024年4月16日 01:44:06