(1). We have n different elements, and we would like to arrange r of these elements with no repetition, where 1 r n.

Size: px
Start display at page:

Download "(1). We have n different elements, and we would like to arrange r of these elements with no repetition, where 1 r n."

Transcription

1 BASIC KNOWLEDGE 1. Two Important Terms (1.1). Permutations A permutation is an arrangement or a listing of objects in which the order is important. For example, if we have three numbers 1, 5, 9, there are 6 total permutations: {1,5,9}, {1,9,5}, {5,1,9}, {5,9,1}, {9,1,5}, {9,5,1}. (1). We have n different elements, and we would like to arrange r of these elements with no repetition, where 1 r n. The number of such permutations is n! P( n, r) = (1.1) ( n r)! (2). We have n different elements, and we would like to arrange all n of these elements with no repetition. We let r = n in (1) to get P(n, n) = n! (1.2) These n distinct objects can be permutated in n! permutations. The symbol! (factorial) is defined as follows: 0! = 1 (1.3) and for integers n 1, n!= n (n 1) 1 (1.4) 1! = 1 2! = 2 1= 2 3! = 3 2 1= 6 4! = = 24 5! = = 120 6! = = 720 1

2 Proof of (1.2): The first object can be chosen in n ways, the second object in n 1 ways, the third in n 2, etc. By the Fundamental Counting Principle, we have n(n 1)(n 2) 2 1 = n! ways. Example 1: How many 5-digit positive integers can be formed by the digits of 0, 1, 2, 3, and 4? Solution: Since is different from 13240, the order in which the digits are arranged is important, so we can use permutations to solve this problem. Method 1: The number of permutations of 5 digits is 5! = 120. However, we have to also consider the permutations of 5 digits where 0 is the leftmost digit. Because 0 cannot be the leftmost digit, these permutations must be subtracted from the total permutations of 5 digits. The number of permutations of 5 digits, with 0 as in the leftmost digit, is 4! = 24. No positive 5-digit integers can be formed by these permutations, so the answer is then = 96. Method 2: The number of permutations with 0 as the units digit is 4! = 24. The number of permutations with 0 as the tens digit is 4! = 24. The number of permutations with 0 as the hundred digit is 4! = 24. The number of permutations with 0 as the thousand digit is 4! = 24. The answer is then 24 4 = 96. (1.2). Combinations Definition: A combination is an arrangement or a listing of things in which order is not important. n Let n, r be non-negative integers such that 0 r n. The symbol (read n choose m ) r is defined and denoted by 2

3 n = r P( n, r) n! = P( r, r) r!( n r)! (1.5) n n Remember: 1, = n, and 0 = n = 1 1 n n n Since n (n r) = r, we have = (1.6) r n r Unlike permutations, combinations are used when the order of the terms does not matter. If we have n different elements, and it doesn t matter which order we arrange the n elements, the number of combinations to arrange m elements where 1 m n, is m Example 2: (a). In how many parts at most do n lines cut a plane? (b). In how many parts at most do n planes cut a space? Solution: n n n (a) n n n n (b) Two Important Rules (2.1). The product rule (Fundamental Counting Principle) (Step Work) When a task consists of k separate steps, if the first step can be done in n 1 ways, the second step can be done in n 2 ways, and so on through the k th step, which can be done in n k ways, then the total number of possible results for completing the task is given by the product: N = n n n... (2.1) n k Example 3: (1998 North Carolina Math Contest) There are 8 girls and 6 boys in the Math Club at Central High School. The Club needs to form a delegation to send to a conference, and the delegation must contain exactly two girls and two boys. The number of possible delegations that can be formed from the membership of the Club is a) 48 b) 420 c) 576 d) 1680 e)

4 Solution: (B). In order to form the delegation, we need to go through the following two steps: Step 1: Selecting two girls: 8 The number of combinations to select two girls out of eight is. 2 Step 2: Selecting two boys: 6 The number of combinations to select two boys out of six is. 2 By the product rule, we have the total number of distinct delegations: 8 6 = = (2.2). The sum rule (case work) If an event E 1 can happen in n 1 ways, event E 2 can happen in n 2 ways, event E k can happen in n k ways, and if any event E 1, E 2,.. or E k happens, the job is done, then the total ways to do the job is N = n 1 + n n k (2.2) Example 4: Hope High School has three elective courses for social studies and four electives for science. How many ways are there for Alex to select three electives from them this semester? (A) 30 (B) 35 (C) 42 (D) 48 Solution: (B). Case 1: Alex can select 1 social studies course and 2 science courses. By the product rule, there are 3 4 = ways for Alex to select 1 social studies course and 2 science courses. Case 2: Alex can select 2 social studies courses and 1 science course. By the product rule, there are 4

5 3 4 = 12 ways for Alex to select 2 social studies courses and 1 science course Case 3: Alex can select 3 social studies courses in = 3 ways. 3 4 Case 4: Alex can select 3 science courses in = 4 ways. 3 By the sum rule, there are = 35 total ways. Example 5: How many two-digit numbers are there such that the units digit is greater than the tens digit? Solution: We want to count the number of two-digit number that have a larger units digit than tens digit, giving us the following 4 cases: Case I: When the units digit is 9, the tens digit can be 1, 2, 3, 4, 5, 6, 7 or 8, so we have 8 such two-digit numbers. Case II: When the units digit is 8, the tens digit can be 1, 2, 3, 4, 5, 6 or 7, so we have 7 such two-digit numbers. Case III: When the units digit is 7, the tens digit can be 1, 2, 3, 4, 5, or 6, so we have 6 such two-digit numbers. Case IV: When the units digit is 6, the tens digit can be 1, 2, 3, 4, or 5, so we have 5 such two-digit numbers. Case V: When the units digit is 5, the tens digit can be 1, 2, 3, or 4, so we have 4 such two-digit numbers. Case VI: When the units digit is 4, the tens digit can be 1, 2, or 3, so we have 3 such twodigit numbers. Case VII: When the units digit is 3, the tens digit can be 1 or 2, so we have 2 such twodigit numbers. 5

6 Case VIII: When the units digit is 2, the tens digit can be 1 so we have 1 such two-digit number. (1 + 8) 8 By The Sum Rule, we have = = 4 9 = 36 such 2 two-digit numbers. Example 6: (1989 AMC) Mr. and Mrs. Zeta want to name baby Zeta so that its monogram (first, middle, and last initials) will be in alphabetical order with no letters repeated. How many such monograms are possible? (A) 276 (B) 300 (C) 552 (D) 600 (E) Solution: (B). The last initial is fixed at Z. If the first initial is A, the second initial must be one of B, C, D,..., Y, so there are 24 choices for the second. If the first initial is B, there are 23 choices for the second initial: of C, D, E,..., Y. Continuing in this way we see that the number of monograms is n( n + 1) Using the formula L + n =, we get the answer = Example 7: (2003 AMC 10B) How many distinct four-digit numbers are divisible by 3 and have 23 as their last two digits? Solution: A number is divisible by 3 if the sum of its digits are divisible by 3; therefore, the first two digits should have a sum of 1, 4, 7, 10, 13, or 16. If the sum of the first two digits is 1, there is only 1 such number: If the sum of the first two digits is 4, there are 4 such numbers because 4 = = = = If the sum of the first two digits is 7, there are 7 such numbers because 7 = = = = = = = If the sum of the first two digits is 10, there are 9 such numbers because 6

7 9 = = = = = = = = 5 + 4= If the sum of the first two digits is 13, there are 6 such numbers because 13 = = = =5 + 8 = = If the sum of the first two digits is 16, there are 3 such numbers because 16 = = = By the sum rule, we get the answer: = 30. Example 8: (1989 AIME) Ten points are marked on a circle. How many distinct convex polygons of three or more sides can be drawn using some (or all) of the ten points as vertices? (Polygons are distinct unless they have exactly the same vertices.) Solution: 968. We would like to form convex polygons. We have the following cases, and in each case, we finish the job of forming convex polygons. Triangles: The number of triangles formed by selecting three points out of 10 points is Convex quadrilaterals: Convex pentagons: Convex hexagons: Convex heptagons: Convex octagons: Convex nonagons:. 9 7

8 10 Convex decagons:. 10 By the sum rule, the number of convex polygons is N = = ( ) = = Three Important Theorems THEOREM 1: (Grouping) (a). Let the number of different objects be n. Divide n into r groups A 1, A 2,..., A r such that there are n 1 objects in group A 1, n 2 objects in group A 2,..., n r objects in the group A r, where n 1 + n n r = n. The number of ways to do so is n! N = (3.1) n! n! n! 1 2 r Proof: n There are ways to take out n 1 elements from n elements to form group A 1. n 1 n n1 There are ways to take out n 2 elements from n n 1 elements to form group A 2. n2 Continue the process until there are n r elements left to form group A r. The total number of ways, based on the Fundamental Counting Principle, is n n n1 nr n!... = n 1 n 2 nr n1! n2! nr! (b). Let there be r types of objects: n 1 of type 1, n 2 of type 2; etc. The number of ways in which these n 1 + n n r = n objects can be rearranged is n! (3.2) n1! n2! nr! The proof of this is the same as the proof for (3) 8

9 Example 9: A gardener plants eight trees out of three maple trees, two oak trees, and four birch trees in a row. How many ways are there? Solution: Case I: With two maple trees, two oak trees, and four birch trees, by (3.1), we have 8! = 420 ways. 2!2!4! Case II: With three maple trees, one oak tree, and four birch trees, there are 8! = 280 ways. 31!!4! Case III: With three maple trees, two oak trees, and three birch trees, there are 8! = 560 ways. 3!2!3! By the sum rule, we know that the total number of ways to plant the trees is = Example 10: Five numbers 1, 2, 3, 4, and 5 are arranged in a row like a1a2a3a 4a5. How many arrangements are there such that a 1 1, a 2 2, a 3 3, a 4 4, a 5 5? Solution: We let 2 be the leftmost number. As shown in the figure to the right, there are 11 such arrangements: Since the leftmost digit can also be 3, 4, or 5, so the answer by the product rule will be 11 4 = 44. THEOREM 2: (Combinations with Repetitions) (a). n identical balls are put into r labeled boxes and the number of balls in each box is not limited. The number of ways is 9

10 n + r 1 n n + r 1 or (3.3) r 1 Proof: Put r labeled boxes next to each other as shown in the figure below. Put n balls into these boxes (Figure 1). Next, we line these boxes up next to each other (Figure 2). Now we take apart the top and bottom sides of the each box and the two sides of the two boxes at the end (Figure 3), resulting figure 4. The problem now becomes finding the number of ways to permute n identical balls with r ( n + r 1)! n + r 1 n + r 1 1 identical partitions: or or. n!( r 1)! n r 1 Figure 1 Figure 2 Figure 3 Figure 4 (b) The number of terms in the expansion of combined, is ( 1 + x2 + x x r x ) n, after the like terms n + r 1 n + r 1 or (3.4) n r 1 (c). Let n be a positive integer. The number of positive integer solutions to x 1 + x x r = n is n 1. (3.5) r 1 10

11 Proof: Write n as n = , where there are n 1 s and n 1 plus signs. In order to decompose n into r summands, we choose r 1 plus signs from the n 1, giving us n 1 ways to do so. r 1 (d). Let n be a positive integer. The number of non-negative integer solutions to y 1 + y y r = n is n + r 1 n n + r 1 or (3.6) r 1 Proof: Set x r 1= y r. Then x r 1. The equation x 1 + x x r = n n + r 1 is equivalent to x 1 + x x r = n + r, which has solutions. r 1 Example 11: A baking company produces four different cookies: Chocolate Chip Cookies, Peanut Butter Cookies, Oatmeal Cookies, and Blueberry Cookies. (a) If a package contains 8 cookies, how many different packages are possible? (b) If a package contains 8 cookies with at least one cookie of each kind, how many different packages are possible? Solution: (a). From (3.6), we write y 1 + y y r = n y 1 + y 2 + y 3 + y 4 = 8 n + r There are N = = = = 165 different packages possible. r (b). By (3.5), we write y 1 + y y r = n y 1 + y 2 + y 3 + y 4 = 8 There are N n = = = = 35 r different packages possible. Example 12: (1998 AIME) Find the number of ordered quadruples (x 1, x 2, x 3, x 4 ) of positive odd integers that satisfy x 1 + x 2 + x 3 + x 4 =

12 Solution: Since x 1, x 2, x 3, x 4 are odd positive integers, we let x 1 = 2y 1 1 x 2 = 2y 2 1 x 3 = 2y 3 1 x 4 = 2y 4 1 y 1, y 2, y 3, and y 4 are positive integers. The given equation becomes: 2(y 1 + y 2 + y 3 + y 4 ) = y 1 + y 2 + y 3 + y 4 = 51 (1) By (3.5), the number of positive integer solutions is = = Example 13: (a) How many ways are there to take 4 letters from a, b, b, c, c, c, d, d, d, d, d? (b) How many different 4-letter codes can be formed by using the letters from a, b, b, c, c, c, d, d, d, d, d? Solution: (a) 20, (b) 152. Method 1: 1 Case 1: 4 letters are the same: = Case 2: 3 letters are the same: = represents the number of ways to select the 3 same letters from either the letters c or 1 d. 3 denotes the number of ways to select the final letter from a, b, or the letter (c or d) 1 that was not selected before. 12

13 Case 3: 2 letters are the same and 2 other letters are the same: = Case 4: 2 letters are the same, 2 other letters are different: = Case 5: 4 letters are different: = 1 4 Total = 20. Method 2 (by listing): Case 1: 4 letters are the same: dddd. We have 1 way for case 1. Case 2: 3 letters are the same: ccca 1 way. cccb 1 way cccd 1 way ddda 1 way dddb 1 way dddc 1 way We have 6 ways for case 2. Case 3: 2 letters are the same and 2 other letters are the same: bbcc 1 way bbdd 1 way ccdd 1 way We have 3 ways for case 3. Case 4: 2 letters are the same, 2 other letters are different: bbac 1 way bbad 1 way bbcd 1 way ccab 1 way ccad 1 way ccbd 1 way 13

14 ddab 1 way ddac 1 way ddbd 1 way We have 9 ways for case 4. Case 5: 4 letters are different: abcd. We have 1 way for case 5. Total = 20. (b) 152. Method 1: 1 Case 1: 4 letters are the same: = ! Case 2: 3 letters are the same: = ! 2 represents the number of ways we select the 3 same letters from either the letters c 1 or d. 3 denotes the number of ways to select the final letter from a, b, or the letter (c or d) 1 that was not selected before. 4! is the number of ways to arrange the 3 same letters with the fourth letter. 3! 3 4! Case 3: 2 letters are the same and 2 other letters are the same: = ! 2! 3 3 4! Case 4: 2 letters are the same, 2 other letters are different: = ! 4 Case 5: 4 letters are different: = 1 4 Total =

15 Method 2 (by listing): Case 1: 4 letters are the same: dddd. We have 1 way for case 1. Case 2: 3 letters are the same: ccca 4! = 4 ways 3! cccb 4 ways cccd 4 ways ddda 4 ways dddb 4 ways dddc 4 ways We have 24 ways for case 2. Case 3: 2 letters are the same and 2 other letters are the same: 4! bbcc = 16 2! 2! bbdd 6 ways ccdd 6 ways We have 18 ways for case 3. Case 4: 2 letters are the same, 2 other letters are different: bbac 4! = 12 2! bbad 12 ways bbcd 12 ways cc ab 12 ways ccad 12 ways ccbd 12 ways ddab 12 ways ddac 12 ways ddbd 12 ways We have 108 ways for case 4. Case 5: 4 letters are different: abcd 15

16 We have 1 way for case 5. Total = 152. THEOREM 3: (Circular Permutations) The number of circular permutations (arrangements in a circle) of n distinct objects is N = (n 1)! (3.7) We can think of this as n people being seated at a round table. Since a rotation of the table does not change an arrangement, we can put person A in one fixed place and then consider the number of ways to seat all the others. Person B can be treated as the first person to seat and M the last person to seat. The number of ways to arrange persons A to M is the same as the number of ways to arrange persons B to M in a row. So the number of ways to seat n people around a round table, or arranging n distinct objects around a circle, is N = (n 1)!. Example 14: In how many ways is it possible to seat seven people at a round table if Alex and Bob must not sit in adjacent seats? Solution: 480. By (3.7), the number of ways to sit 7 people at a round table is N = (n 1)! = N = (7 1)! = 6! = 720. We can figure out the number of ways that Alex and Bob sit together by seeing them as one single entity, giving us (6 1)! = 5! ways where Alex and Bob are sitting next to each other. This is multiplied by 2 since we can alter Alex s and Bob s positions. The number of ways to seat seven people at a round table if Alex and Bob must not sit in adjacent seats is then ! = = 480. Example 15: In how many ways can four married couples be seated at a round table if no two men, as well as no husband and wife are to be in adjacent seats? 16

17 Solution: 12. There are (4 1)! = 3! to seat four women. After the ladies are seated, person M 4 (whose wife is not shown in the figure below) has two ways to sit. After he is seated in any one of the two possible seats, the other men have only one way to sit in the remaining seats. The solution is 3! 2 = 12. Example 16: Twelve student body members are seated at a round table electing president, vice president, and treasurer. How many possible ways are there such that at least two of the three elected had been sitting next to each other? Solution: Case I: Three had been sitting next to each other. We have 12 ways to select first person, say, A. Once A is selected, we have one way to select B and C. By the product rule, the number of ways is = 12. Case II: Two of them had been sitting next to each other. We have 12 ways to select two that had been sitting next to each other. Let us say, A and B. For the third person, we are not allowed to select neither C nor D. So we have 12 4 ways to select the third person. By the product rule, number of ways is 12 (12 4) = 96. Finally by the sum rule, we have the answer: =

18 4. Typical Problems in Counting 4.1 Counting problems related to partitioning Example 17: (1994 AMC) Nine chairs in a row are to be occupied by six students and Professors Alpha, Beta and Gamma. These three professors arrive before the six students and decide to choose their chairs so that each professor will be between two students. In how ma ny ways can Professors Alpha, Beta and Gamma choose their chairs? (A) 12 (B) 36 (C) 60 (D) 84 (E) 630 Solution: We sit the students first. Once the students are seated, there are five spaces for three professors to choose 5 (two spaces at the ends do not count because each professor 3 needs to sit between two students) and there are 3! ways for them to rearrange themselves. 5 By the product rule, the answer is 3! = Example 18: Ten chairs in a row are to be occupied by eight students and two teachers Alpha and Beta for a class picture. Two teachers decide not to sit next to each other. There are n arrangements and the last two digits of n is A)040 (B)520 (C)440 (D)720 Solution: (A). Because the two teachers decide to not sit next to each other, we can first seat the students, and then seat the two teachers in between the students. There are 8! ways to eat the students first. 18

19 9 After that, we see that there are 9 spaces for two teachers to sit, giving us ways to 2 seat them, and we must also note that there are 2! ways for them to rearrange themselves. By the product rule, the total number of ways to seat the teachers and students is 8! 9 2! = = Counting problems related to coloring Example 19: As shown in the figure below, each of five regions ABCDE is to be assigned a color. There are 5 colors to choose from, and no adjacent regions can be the same color. How many different ways are there if each color is allowed to be used more than once? Solution: 540 ways. We have 5 ways to color region A first. Then we color region B (we have 4 ways). Next we color region C (we have 3 ways). For region D, we have 3 ways (not the same color with A or C). Finally we have 3 ways to color E (not the same color with A or D). By the product rule, we have = 540 different ways to color. Example 20: A s shown in the fi gure below, each of six regions ABCD is to be assigned a color. There are 4 colors to choose from, and no adjacent regions can be the same color. How many different ways are there if each color is allowed to use more than once? A.96 B.84 C.60 D. 48 Solution: B. Case I: A and C have the same color. The number of ways to color the six regions is = 36. Case II: A and C have different colors. 19

20 The number of ways to color the six regions is = 48. The answer is = 84 ways. Example 21: The lengths of five sides of convex pentagon ABCDE are distinct. Each side is to be assigned a color. There are 3 colors (red, yellow and blue) to choose from, and two sides sharing the same vertex must have different colors. How many different colorings are possible? Solution: 30. We label the sides as follows: If a is colored red, b is colored yellow, then when c is colored red, as shown in the figure below: we have two arrangements: If a is colored red, b is colored yellow, then when c is colored blue, as shown in the figure below: 20

21 we have three arrangements: By the sum rule, we have = 5 ways. We have 5 total ways if (a,b) is colored (red, yellow). We see that (a, b) can also colored (red, blue), (yellow, blue), (yellow, red), (blue, red), and (blue, yellow). Therefore the total number of colorings is 5 6 = 30. Example 22: Each of four faces of a regular tetrahedron is colored one of 10 colors. How many distinct ways are there to color the tetrahedron? (Two colorings are considered distinct if they cannot be rotated to look like each other). (A) 925 (B) 980 (C) 1024 (D) 1090 (E)1450 Solution: Case I: Four colors are used: We have two configurations as shown in the figure to the right: 21

22 The number of ways to color is Case II: Three colors are used: We have three configurations as shown in the figure to the right: The number of ways to color is Case III: Two colors are used: We have three configurations as shown in the figure to the right: The number of ways to color is Case IV: One color is used: We have only one configuration as shown in the figure to the right: The number of ways to color is Total ways: = 925 Example 23: (2003 North Carolina Math Contest) The tips of a five-pointed star are to be painted red, white and blue. How many ways can this be done if no adjacent points can be the same color? Solution: 30 ways. Method 1 (official solution): Let the 5 points be ABCDE. Note that to paint the 5 points in the prescribed fashion, 2 colors must be used 22

23 twice and one color just once. Also, note that if point A is a fixed color, then there are only two ways to paint the star. Consider one such set of colors, where red is the single color used. Then if A is painted red there are only two ways to paint the rest of the star. A similar situation occurs if the points B, C, D, or E are painted with the red. For this set of colors there are 10 ways to paint the star. Since there are three different sets of colors, there are a total of 30 ways to paint the star. Method 2 (our solution): If A and C have the same color, then the number ways to color will be: A B C D E = 12 If A and D have the same color, then the number of ways to color will be: A B C D E = 12 If A and C have the different color, then the number of ways to color will be: A B C D E = 6 Total ways is =

24 Method 3: There is a formula for this problem which can be derived by the recursion method. A n = (m 1)[(m 1) (n-1) + ( 1) n ], where n is the number of points and m is the number of colors. In the case for the NC Math contest problem, n = 5 and m = 3. A n = (m 1)[(m 1) (n-1) + ( 1) n ] = (3 1)[(3 1) (5 1) + ( 1) 5 ] = 30. Example 24. There are five regions to be colored with four different colors. If no same color can be used for adjacent regions, how many ways are there to color? Solution: If regions 1 and 4 are colored by the same color, we have the following ways to do so: Regions Ways to color = 48 If regions 1 and 4 are colored by different colors, we have the following ways to do so: Regions Ways to color = 24 The total number of ways is = 72. Example 25. Each point of A, B, C, D, E, and F is to be assigned a color. There are 4 colors to choose from, and the ends of each line segment must have different colors. How many different colorings are possible? (A) 288 (B)264 (C) 240 (D)168 Solution: B. Case I:4 colors are used for B, D, E, and F. 4 We have A 4 1 1= 24ways. Case II: 3 colors are used for B, D, E, and F. 3 We have A A = 192 ways. 24

25 Case III: 2 colors are used for B, D, E, and F. 2 We have A 4 2 2= 48 ways. By the product rule, we have total = 264 ways Counting problems related to geometry Example 26. (1993 AMC) How many triangles with positive area are there whose vertices are points in the xy-plane whose coordinates are integers (x, y) satisfying 1 x 4 and 1 y 4? Solution: There are = 560 sets of 3 points. We must exclude from our count those sets of 3 three points that are collinear. There are 4 vertical and 4 horizontal lines with four points each. These 8 lines contain = 32 sets of 3 collinear points. Similarly, there are = 12 sets of collinear points that determine lines of slope ±1. Because there are no other sets of 3 collinear points, the number of triangles is the total sets minus the degenerate triangles equals =

26 Example 27. (1976 AMC) Lines L 1, L 2..., L 100 are distinct. All lines L 4n, n a positive integer, are parallel to each other. All lines L 4n-3, n a positive integer, pass through a given point A. The maximum number of points of intersection of pairs of lines from the complete set {L 1, L 2,..., L 100 } is (A) 4350 (B) 4351 (C) 4900 (D) 4901 (E) 9851 Solution: (B) One hundred lines intersect at most at = = 4950 points. However, we know that 25 lines L 4, L 8,..., L 100 are parallel; hence = 300 intersections do not 2 exist. We are also given that the 25 lines L 1, L 5,..., L 97 intersect only at point A, so that 25 1 = 299 more intersections do not exist. 2 The maximum number of points of intersection is = Example 28. There are six points in a plane. Sixteen triangles can be formed by connecting these points. How many lines are there that contain more than 3 of the points? Solution: 6 If there no three points are collinear, we can form = 20 triangles from six points. 3 Since we are given that connecting the six points can form 16 triangles, we know that three or more points are collinear. 6 5 Since = = 10, we know that no 5 points are collinear Suppose there are 4 points collinear, we have = 20 4 = 16 triangles, which is 2 3 true. Suppose there are 3 points collinear, we have = 20 4 = 16 triangles, which is also true

27 So we know that either there is one line contains 4 points or three lines each containing three points Counting problems related to numbers Example 29: Alex wants to select two different numbers from {2, 3, 4, 5, 6, 7, 8, 9}. How many ways are there to do so such that these two numbers are not consecutive? Solution: 21. Method 1 (Listing): Case I: First integer: 2 Second integer: 4, 5, 6, 7, 8, or 9 6 ways. Case II: First integer: 3 Second integer: 5, 6, 7, 8, or 9 5 ways. Case III: First integer: 4 Second integer: 6, 7, 8, or 9 4 ways. Case IV: First integer: 5 Second integer: 7, 8, or 9 3 ways. Case V: First integer: 6 Second integer: 8 or 9 2 ways. Case VI: First integer: 7 Second integer: 9 27

28 1 way. Total = 21 ways. Method 2: The number of ways to select k non-consecutive elements from n consecutive terms is n ( k 1) N =. k n is the total number of terms. k is the number of elements selected. n = = 8. k = 2. n ( k 1) 8 (2 1) 7 N = = = = 21. k k 2 Example 30: (2006 AMC 12 A) How many non-empty subsets S of {1, 2, 3,..., 15} have the following two properties? (1) No two consecutive integers belong to S. (2) If S contains k elements, then S contains no number less than k. (A) 277 (B) 311 (C) 376 (D) 377 (E) 405 Solution: The number of ways to select k non-consecutive elements from n consecutive terms is n ( k 1) N =. k 15 If k = 1, n = 15, then N 1 = = If k = 2, n = 14 (S contains no number less than 2), then N 2 = = If k = 3, n = 13, (S contains no number less than 3) then N 3 = =

29 9 If k = 4, n = 12, (S contains no number less than 4) then N 4 = = If k = 5, n = 11, then N 5 = = If k = 6, n = 10, then N 6 = (not possible). 6 Total: = 405. Note: this was the last problem of the test. Example 31: (1980 Bulgarian Mathematical Olympiad) Find the number of ways of choosing 6 among the first 49 positive integers, at least two of which are consecutive. Solution: 49 There are ways to select 6 numbers among the first 49 positive integers. 6 n ( k 1) 44 There are = ways to select 6 numbers among the first 49 positive k 6 integers such that no two of which are consecutive. The number of ways of choosing 6 among the first 49 positive integers, where at least two of which are consecutive is. 6 6 Example 32. (1987 China Middle School Math Contest) Counting number n has the following property: if we take any 50 different numbers from 1, 2, 3,, n, there always will be two numbers with the difference of 7. Among the many values of n, what is the largest value? Solution: 98. First, we take the 7 numbers from 1 to 7. Then we take 7 numbers again from 15 to 21 and we repeat this action until we get the last group: 85, 86, 87, 88, 89, 90, 91. Now we have 49 numbers. The difference between any two numbers in these 49 numbers is not 7. Since the question states that we take 50 numbers, we must take 1 more number. If we take one more number (92 in our case), we will get two numbers with a difference of 7 29

30 (92 85). However, 92 is not the largest number since we can have any one of 93 to 98. So 98 is the largest value of n. Note that if we leave the numbers from 92 to 98 and take 99 instead, we can go on until we take 105 so that all of these numbers will not have a difference of 7, so 99 can not be the value of n. When n = 98, we can divided all the numbers into the following 7 subsets: { 1,8,15, L,85,92}, { 2,9,16, L,86,93}, { 3,10,17, L,87,94}, { 4,11,18, L,88,95}, { 5,12,19, L,89,96}, { 6,13,20, L,90, 97}, { 7,14,21, L,91, 98}, Each subset has 14 numbers and any two neighboring numbers have a difference of 7. If we take 50 numbers from these 7 sets (50 = ) from the pigeonhole principle, we are sure that there must be one subset containing 8 numbers. There must be two consecutive numbers among these 8 numbers and there must be two numbers with a difference of 7. So the largest value of n is 98. Example 33: A subset of integers 1, 2,, 100 has the property that none of its members is either the sum of other two or two times of another. What is the largest number of members such a subset can have? Solution: 50. All 50 odd numbers can be selected. If we have 51 numbers, without loss of generality, we can assume that the numbers can be denoted as a 1, a 2, a 3,.. a 51, with a 51 as the greatest of these numbers. Since none of these 51 members is the sum of the other two, we have the following distinct integers: a 51 a 1, a 51 a 2,. a 51 a 50, all of which are within 100. However, this gives us 101 total numbers. Because our subset only has 100 total numbers, among these 101 numbers, there must be two numbers that are equal. i.e. a i = a 51 a i, or 2a i = a 51. This is a contradiction to the properties of our subset, so the largest number of members is 50. Example 34: A subset of integers 1, 2,, 10 has the property that the sum of its members is odd. How many such subsets are there? Solution: 526. Let A = {1, 3, 5, 7, 9} and B = {2, 4, 6, 8, 10}. 30

31 If we form a subset by taking out 1, 3, or 5 numbers from set A and 0, 1, 2, 3, 4, or 5 numbers from set B, the sum of the members in this subset is odd. So the number of such subsets is: = = Note: A subset of integers 1, 2,, n has the property that the sum of its members is odd. The number of such subsets is 2 n 1. A subset of integers 1, 2,, n has the property that the sum of its members is even. The number of such subsets is 2 n

32 PROBLEMS Problem 1. (1986 AMC) The 120 permutations of AHSME are arranged in dictionary order, as if each were an ordinary five-letter word. The last letter of the 86 th word in this list is (A) A (B) H (C) S (D) M (E) E Problem 2. (1990 AMC) At one of George Washington s parties, each man shook hands with everyone except his spouse, and no handshakes took place between women. If 13 married couples attended, how many handshakes were there among these 26 people? (A) 78 (B) 185 (C) 234 (D) 321 (E) 325 Problem 3. Six cards each labeled with one of the digits 1 to 6 are put into 3 different envelopes. Each envelope will have two cards and cards 1 and 2 will be in the same envelope. How many ways are there to do so? (A) 12 (B) 18 (C) 36 (D) 54 Problem 4. Hope High School has three elective courses for social studies and four electives for science. How many ways are there for Alex to select three electives from them this semester with at least one from each subject? (A) 30 (B) 35 (C) 42 (D) 48 Problem 5. A palindrome number is a number that is the same when written forwards or backwards. How many palindrome numbers less than 1000 are there? Problem 6. How many 3-digit even numbers can be formed by using the digit 0, 2, 3, 4, and 5? Problem 7. You have nine line segments with the lengths of 1, 2, 3, 4, 5, 6, 7, 8, and 9, respectively. How many ways are there to form a square by connecting the ends of some of these line segments? No overlapping of the line segments is allowed. 32

33 Problem 8. (1985 AMC) How many distinguishable rearrangements of the letters in CONTEST have both the vowels first? (For instance, OETCNST is one such arrangement, but OTETSNC is not.) (A) 60 (B) 120 (C) 240 (D) 720 (E) 2520 Problem 9. In how many ways can three married couples be seated in a row if no husband and wife are to be in adjacent seats? Problem 10. A baking company produces five different cookies: Chocolate Chip Cookies, Peanut Butter Cookies, Oatmeal Cookies, Sugar Cookies, and Blueberry Cookies. If a package contains 8 cookies with at least one each kind, how many different packages are possible? Problem 11. (1985 China High School Math Contest) Find the number of nonnegative integer solutions to the equation 2x 1 + x 2 + x 3 + x 4 + x 5 + x 6 + x 7 + x 8 + x 9 + x 10 = 3. Problem 12. In how many ways can four men and four women be seated at a round table if no two men are to be in adjacent seats? Problem 13. In how many ways can a family of six people be seated at a round table if the youngest kid must sit between the parents? Problem 14. A gardener plants three maple trees, four oak trees, and five birch trees in a row. How many ways are there such that no two birch trees are next to one another? Problem 15. Seven identical chairs in a row are to be seated by four students. How many arrangements are there such that the only two of the three empty chairs are next to each other? Problem 16. As shown in the figure, each of six regions ABCDEF is to be assigned a color. There are 4 colors to choose from, and no adjacent regions can be the same color. How many different ways are there if each color is allowed to use more than once? 33

34 Problem 17. There are five regions that need to be colored by six different colors as shown in the figure. Each region can only be colored with one color. How many different ways to do the coloring? Problem 18. (2011 AMC 10 A) Each vertex of convex pentagon ABCDE is to be assigned a color. There are 6 colors to choose from, and the ends of each diagonal must have different colors. How many different colorings are possible? Problem 19. (2007 AMC 12B ) Each face of a regular tetrahedron is painted either red, white, or blue. Two colorings are considered indistinguishable if two congruent tetrahedra with those colorings can be rotated so that their appearances are identical. How many distinguishable colorings are possible? (A) 15 (B) 18 (C) 27 (D) 54 (E) 81 Problem 20. Nine squares of a 3 3 board are painted using three colors: black, red and yellow with the following restrictions: (1) each square is pained with one color, (2) each color is used exactly three times, (3) each column is painted with three colors, and each row is colored with three colors. How many ways can this be done? Problem 21. How many ways to color the 4 regions using 3 different colors, if no two neighboring regions can have the same color? 34

35 Problem 22. Using red, yellow, blue, and black colors to color the figure as shown. Each region is colored with one color and no adjacent region can have the same color. If each color is allowed to use more than once, how many ways are there to color? (A) 48 (B) 36 (C) 30 (D) 24 Problem 23. What is the size of the largest subset, S, of {1, 2,, 2013} such that no pair of distinct elements of S has a sum divisible by 3? Problem 24. Line a is parallel to line b. There are 10 points on line a and 9 points on line b. At most how many points of intersection of line segments obtained by connect all these points on line a to all the points on b? Problem 25. In how many ways can two squares be selected from an 8-by-8 chessboard so that they are not in the same row or the same column? Problem 26. Alex wants to select three different numbers from {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}. How many ways are there such that no two numbers are consecutive? Problem 27. Alex wants to select four different numbers from {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}. How many ways are there such that no two numbers are consecutive? Problem 28. How many ways are there to take two different numbers from 1, 2,, 32 such that the sum of them is divisible by 4? Problem 29. At least how many numbers need to be removed from the list of 1, 2, 3,, 2013 such that among the remaining numbers, any number is not a product of other two numbers? 35

36 Problem 30. A subset of integers 1, 2,, 100 has the property that the sum of its two members is always divisible by 10. What is the largest number of members such a subset can have? Problem 31. How many ways are there to take 7 numbers from 1 to 12 such that none of the chosen numbers is twice another? Problem 32. How many ways are there to take two different numbers from 1, 2,, 30 such that the product of them is divisible by 7? Problem 33. How many ways are there to take three different numbers from 1, 2,, 30 such that the sum of them is divisible by 3? Problem 34. What is the size of the largest subset, S, of {1, 2,, 2013} such that no pair of distinct elements of S has a sum divisible by 3? 36

37 SOLUTIONS: Problem 1: Solution: (E). The first 24 = 4! words begin with A, the next 24 begin with E and the next 24 begin with H. So the 86 th begins with M, and it is the = 14 th such word. The first six words that begin with M begin with MA and the nest six with ME. So the desired word begins with MH and it is the second such word. The first word that begins with MH is MHAES, the second is MHASE. Thus E is the letter we seek. Problem 2: Solution: 234. If Alex shakes hand with Bob or Bob shakes hand with Alex, their interaction only counts as one time, so the order does not matter and we may use combinations to solve this problem. 26 We have 26 people, so at most we can have handshakes. Among these handshakes, 2 13 there are handshakes between women, and 13 handshakes between spouses Therefore the final answer is 13 = Problem 3: Solution: (B). We deal with special situation first. We have 3 ways to put cards 1 and 2 into the same 4 envelope. After that, we have = 6 ways to select two cards from the four remaining 2 cards and put them into one envelope. The two remaining cards will go in the last envelope. By the product rule, we have 3 6 = 18 ways. Problem 4: Solution: 30. Case I: Alex can select 1 social studies course and 2 science courses. By the product rule, 3 4 = Case II: Alex can select 2 social studies courses and 1 science course. By the product 3 4 rule, = By the sum rule, we have = 30 ways. 37

38 Method 2: C C C = Problem 5: Solution: 109. Our job is to count palindrome numbers. We have the following three cases. In each case, we finish the job of counting palindrome numbers. Case I: E 1 : to count one-digit palindrome numbers. There are 10 one-digit palindromes: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9. We finished E 1 in n 1 = 9 ways. Case II: E 2 to count two-digit palindrome numbers. There are 9 two-digit palindromes: 11, 22, 33, 44, 55, 66, 77, 88, 99. We finished E 2 in n 2 = 9 ways. Case III: E 3 to count three-digit palindrome numbers. There are 90 3-digit palindromes: 101, 111, 121, We finished E 3 in n 3 = 90 ways. N = n 1 + n 2 + n 3 = = 109. Problem 6: Solution: 30. The job is to form even numbers. We have the following two cases. In both cases, we finish the job of forming even numbers. n! Case I: When 0 is in the ones position, we have four digits left. By P( n, r) =, we ( n r)! 4! have P ( 4,2) = = 12 such numbers. (4 2)! n! Case II: When 0 is not in the ones position, by P( n, r) =, we have P(2,1) ways to ( n r)! select the units digit (only digits 2 and 4 available), P(3,1) ways to select the hundred digit (0 is excluded, one of the two digits 2 or 4 is also excluded since one of them has been used already as the units digit), P(3,1) ways for the middle digit. By the product rule, we get: P ( 2,1) P(3,1) P(3,1) = 18 such numbers. 38

39 By the sum rule, we get the final answer = 30. Problem 7: Solution: We see that ( L + 9) 4 = < 12, so the length of the side of the square is less 4 than 12. Case I: The side length is 11. We have one way: = = = Case II: The side length is 10. We have one way: = = = Case III: The side length is 9. We have 5 ways: 9 = = = = Case IV: The side length is 8. We have 1 way: 8 = = = Case V: The side length is 7. We have 1 way: 7 = = = Case VI: The side length is 6 or less. We have no ways. In total, we have = 9 different ways. Problem 8: Solution: (B). There are two ways to order the vowels. By (3.1), we have the following ways to rearrange the rest of the letters C, N, T, T, S: n! 5! N = = = 60. n1! n2! n r! 2! 1! 1! 1! By the product rule, we have the answer: 2 60 = 120. Problem 9: Solution:

40 Let the three couples be (A, A), (B, B), (C, C). If A is seated first, we have the following 5 arrangements: If we switch the genders for A, B, and C, we have the factors If A is followed by C, we get another factor of 2. The number of arrangements is = 80. Similarly, B or C can also be seated first, so the final answer will be 3 80 = 240. Problem 10: Solution: 35. By (3.5), we have x 1 + x x r = n x 1 + x 2 + x 3 + x 4 + x 5 = 8 n The answer is N = = = = 35. r Problem 11: Solution: 174. We focus on 2x 1 since this term is special. We know that x 1 0, so we have the following two cases: Case I: x 1 = 0. The given equation becomes: x 2 + x 3 + x 4 + x 5 + x 6 + x 7 + x 8 + x 9 + x 10 = 3. The number of nonnegative integer solutions is given by (3.6): n + r = = 165 n 3 Case II: x 1 = 1. The given equation becomes: x 2 + x 3 + x 4 + x 5 + x 6 + x 7 + x 8 + x 9 + x 10 = 1. The number of nonnegative integer solutions is given by (3.6): 40

41 n + r = = 9 n 1 We do not have case III since x 1 is less than 2. The answer is = 174. Problem 12: Solution: 144. We seat four women first. There are (4 1)! = 3! ways to sit them. After the ladies are seated, we have 4! ways to seat four men in the small rectangles as shown in the figure below. 4! 3! = 144. Problem 13: Solution: 12. We link two parents and the youngest kid together to form a unit. There are (4 1)! ways to seat them at the table. The result must be multiplied by 2 since we can switch the positions of the two parents, giving us the answer (4 1)! 2 = 12 ways. Problem 14: Solution: We plant the non-birch trees first. There are 7! ways to do so. There are eight spaces for 8 three birch trees to choose and there are 5! ways for them to rearrange themselves. 5 8 By the product rule, the answer is 7! 5! = Problem 15: Solution: 480. We tie the two empty chairs next to each other together and treat them as on unit, namely A. the other empty chair is B. 41

42 5 We have 4! = 24 ways to sit four students. There are = 10 ways to insert A and B. 2 and we multiply the result by 2 because A and B can switch their positions. By the product rule, the answer will be = 480. Problem 16: Solution: 732. Case I: A, C, and E have the same color. The number of ways to color: = 108 Case II: A, C, and E have two different colors. The number of ways to color: = 432. Case III: A, C, and E have the three different colors. The number of ways to color: P(4,3) = 192. There are a total of = 732 ways to color. Problem 17: Solution: We have 6 ways to color region A first. Then we color region B (we have 5 ways), and next region C (4 ways). For the color of region D, we have two cases: Case I: Different color from B. We have 3 ways to color D (because we have three colors left) and 3 ways to color E (either from 2 colors left or the same color as C). Case II: Same color as B. We have 1 way to color D and 4 ways to color E. The answer will be ( ) = 1560 ways. 42

43 Problem 18: Solution: Method 1: Case I: 5 colors are used: 6 5! = Case II: 4 colors are used: ! 5 = We consider the vertex A first, and then we color point B and point A with the same color. We multiply by 5 because we have five vertices (5 sub cases). 6 Case III: 3 colors are used: = We consider the vertex A first, and then we color points A and B with the same color. Finally, we multiply the result by 5 since we have 5 vertices. No other cases exist. So the final answer is = Method 2: There is a formula for this problem which can be derived by the recursion method. A n = (m 1)[(m 1) (n-1) + ( 1) n ], where n is the number of points and m is the number of colors. n = 5 and m = 6. A n = (m 1)[(m 1) (n-1) + ( 1) n ] = (6 1)[(6 1) (5 1) + ( 1) 5 ] = Problem 19: Solution: 15. Let r, w, and b be the number of red, white, and blue faces, respectively. Case 1: One color is used. rrrr, wwww, bbbb. 43

44 We have 3 ways to color. Case 2: Two colors are used. rrww, rrbb, wwbb; rrrb, rrrw; wwwr, wwwb, bbbr, bbbw. We have 9 ways to color. Case 3: Three colors are used. rrwb, wwrb, bbrw. R We have 3 ways to color. In total we have = 15 ways. Problem 20: Solution: 12. We have 3 ways to color square 8. Let us say we use the color black. In the region that contains the squares 5, 9, 2, and 7, we have two ways to use the black color (color 5, 2 black or 7, 9 black). After that, we have exactly two ways to color other squares. By the product rule, we have = 12 ways. Problem 21: Solution: 18. If regions 1 and 3 are painted the same color: Regions Ways to color If regions 1 and 3 are painted different colors: Regions Ways to color Total ways = 18. Problem 22: (A) 48 Solution: We have two cases: Case I: Region A and region B have the same color. We have 4 ways to color region A and 1 way to color region B. 44

45 Then we can color region C in 3 ways and region D in 2 ways. That is = 24 ways. Case II: Region A and region B have different colors. We have 4 ways to color region A, 3 ways to color region B, 2 ways to color region C, and 1 way to color region D. This gives us = 24 ways. Therefore, there are a total of = 48 ways to color the given figure. Problem 23: Solution: 672. Let A = {3, 6, 9,, 2013}, B = {1, 4, 7,, 2011}, and C = {2, 5, 8,, 2012}. We can at most select one element from A to add to B or C to form S. Since B and C each have 671 elements, S has at most = 672 elements. Problem 24: Solution: We need two points on line a and two points on line b in in order to form 1 point of intersection. No three line segments will intersect at one point, so the maximum number of points of intersection is 10 9 = Problem 25: Solution: Consider the coordinate system (a, b), which designates a square to be in row a, column b. In order to ensure that two squares are in different rows and different columns, both 8 their coordinates must be different. There are = 28 ways to choose 2 different row 2 8 coordinates and = 28 ways to choose 2 different column coordinates. Given the row 2 coordinates and column coordinates, there are 2 different ways to pair them into two ordered pairs. Therefore, the answer is = Problem 26: Solution:

LEVEL I. 3. In how many ways 4 identical white balls and 6 identical black balls be arranged in a row so that no two white balls are together?

LEVEL I. 3. In how many ways 4 identical white balls and 6 identical black balls be arranged in a row so that no two white balls are together? LEVEL I 1. Three numbers are chosen from 1,, 3..., n. In how many ways can the numbers be chosen such that either maximum of these numbers is s or minimum of these numbers is r (r < s)?. Six candidates

More information

PERMUTATIONS AND COMBINATIONS

PERMUTATIONS AND COMBINATIONS 8 PERMUTATIONS AND COMBINATIONS FUNDAMENTAL PRINCIPLE OF COUNTING Multiplication Principle : If an operation can be performed in 'm' different ways; following which a second operation can be performed

More information

LESSON 2: THE INCLUSION-EXCLUSION PRINCIPLE

LESSON 2: THE INCLUSION-EXCLUSION PRINCIPLE LESSON 2: THE INCLUSION-EXCLUSION PRINCIPLE The inclusion-exclusion principle (also known as the sieve principle) is an extended version of the rule of the sum. It states that, for two (finite) sets, A

More information

Question No: 1 If you join all the vertices of a heptagon, how many quadrilaterals will you get?

Question No: 1 If you join all the vertices of a heptagon, how many quadrilaterals will you get? Volume: 427 Questions Question No: 1 If you join all the vertices of a heptagon, how many quadrilaterals will you get? A. 72 B. 36 C. 25 D. 35 E. 120 Question No: 2 Four students have to be chosen 2 girls

More information

Counting Things Solutions

Counting Things Solutions Counting Things Solutions Tom Davis tomrdavis@earthlink.net http://www.geometer.org/mathcircles March 7, 006 Abstract These are solutions to the Miscellaneous Problems in the Counting Things article at:

More information

Simple Counting Problems

Simple Counting Problems Appendix F Counting Principles F1 Appendix F Counting Principles What You Should Learn 1 Count the number of ways an event can occur. 2 Determine the number of ways two or three events can occur using

More information

CS100: DISCRETE STRUCTURES. Lecture 8 Counting - CH6

CS100: DISCRETE STRUCTURES. Lecture 8 Counting - CH6 CS100: DISCRETE STRUCTURES Lecture 8 Counting - CH6 Lecture Overview 2 6.1 The Basics of Counting: THE PRODUCT RULE THE SUM RULE THE SUBTRACTION RULE THE DIVISION RULE 6.2 The Pigeonhole Principle. 6.3

More information

Solutions to Exercises on Page 86

Solutions to Exercises on Page 86 Solutions to Exercises on Page 86 #. A number is a multiple of, 4, 5 and 6 if and only if it is a multiple of the greatest common multiple of, 4, 5 and 6. The greatest common multiple of, 4, 5 and 6 is

More information

Elementary Combinatorics

Elementary Combinatorics 184 DISCRETE MATHEMATICAL STRUCTURES 7 Elementary Combinatorics 7.1 INTRODUCTION Combinatorics deals with counting and enumeration of specified objects, patterns or designs. Techniques of counting are

More information

2. Nine points are distributed around a circle in such a way that when all ( )

2. Nine points are distributed around a circle in such a way that when all ( ) 1. How many circles in the plane contain at least three of the points (0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1), (2, 2)? Solution: There are ( ) 9 3 = 8 three element subsets, all

More information

Topics to be covered

Topics to be covered Basic Counting 1 Topics to be covered Sum rule, product rule, generalized product rule Permutations, combinations Binomial coefficients, combinatorial proof Inclusion-exclusion principle Pigeon Hole Principle

More information

Week 3-4: Permutations and Combinations

Week 3-4: Permutations and Combinations Week 3-4: Permutations and Combinations February 20, 2017 1 Two Counting Principles Addition Principle. Let S 1, S 2,..., S m be disjoint subsets of a finite set S. If S = S 1 S 2 S m, then S = S 1 + S

More information

CSE 312: Foundations of Computing II Quiz Section #2: Combinations, Counting Tricks (solutions)

CSE 312: Foundations of Computing II Quiz Section #2: Combinations, Counting Tricks (solutions) CSE 312: Foundations of Computing II Quiz Section #2: Combinations, Counting Tricks (solutions Review: Main Theorems and Concepts Combinations (number of ways to choose k objects out of n distinct objects,

More information

Review I. October 14, 2008

Review I. October 14, 2008 Review I October 14, 008 If you put n + 1 pigeons in n pigeonholes then at least one hole would have more than one pigeon. If n(r 1 + 1 objects are put into n boxes, then at least one of the boxes contains

More information

THE PIGEONHOLE PRINCIPLE. MARK FLANAGAN School of Electrical and Electronic Engineering University College Dublin

THE PIGEONHOLE PRINCIPLE. MARK FLANAGAN School of Electrical and Electronic Engineering University College Dublin THE PIGEONHOLE PRINCIPLE MARK FLANAGAN School of Electrical and Electronic Engineering University College Dublin The Pigeonhole Principle: If n + 1 objects are placed into n boxes, then some box contains

More information

Permutations and Combinations. Quantitative Aptitude & Business Statistics

Permutations and Combinations. Quantitative Aptitude & Business Statistics Permutations and Combinations Statistics The Fundamental Principle of If there are Multiplication n 1 ways of doing one operation, n 2 ways of doing a second operation, n 3 ways of doing a third operation,

More information

Introduction to Mathematical Reasoning, Saylor 111

Introduction to Mathematical Reasoning, Saylor 111 Here s a game I like plying with students I ll write a positive integer on the board that comes from a set S You can propose other numbers, and I tell you if your proposed number comes from the set Eventually

More information

Counting Things. Tom Davis March 17, 2006

Counting Things. Tom Davis   March 17, 2006 Counting Things Tom Davis tomrdavis@earthlink.net http://www.geometer.org/mathcircles March 17, 2006 Abstract We present here various strategies for counting things. Usually, the things are patterns, or

More information

Combinatorics: The Fine Art of Counting

Combinatorics: The Fine Art of Counting Combinatorics: The Fine Art of Counting Week Four Solutions 1. An ice-cream store specializes in super-sized deserts. Their must famous is the quad-cone which has 4 scoops of ice-cream stacked one on top

More information

Meet #3 January Intermediate Mathematics League of Eastern Massachusetts

Meet #3 January Intermediate Mathematics League of Eastern Massachusetts Meet #3 January 2009 Intermediate Mathematics League of Eastern Massachusetts Meet #3 January 2009 Category 1 Mystery 1. How many two-digit multiples of four are there such that the number is still a

More information

Fall. Spring. Possible Summer Topics

Fall. Spring. Possible Summer Topics Fall Paper folding: equilateral triangle (parallel postulate and proofs of theorems that result, similar triangles), Trisect a square paper Divisibility by 2-11 and by combinations of relatively prime

More information

Mat 344F challenge set #2 Solutions

Mat 344F challenge set #2 Solutions Mat 344F challenge set #2 Solutions. Put two balls into box, one ball into box 2 and three balls into box 3. The remaining 4 balls can now be distributed in any way among the three remaining boxes. This

More information

MATH CIRCLE, 10/13/2018

MATH CIRCLE, 10/13/2018 MATH CIRCLE, 10/13/2018 LARGE SOLUTIONS 1. Write out row 8 of Pascal s triangle. Solution. 1 8 28 56 70 56 28 8 1. 2. Write out all the different ways you can choose three letters from the set {a, b, c,

More information

CHAPTER 5 BASIC CONCEPTS OF PERMUTATIONS AND COMBINATIONS

CHAPTER 5 BASIC CONCEPTS OF PERMUTATIONS AND COMBINATIONS CHAPTER 5 BASIC CONCEPTS OF PERMUTATIONS AND COMBINATIONS BASIC CONCEPTS OF PERM UTATIONS AND COM BINATIONS LEARNING OBJECTIVES After reading this Chapter a student will be able to understand difference

More information

Chapter 2. Permutations and Combinations

Chapter 2. Permutations and Combinations 2. Permutations and Combinations Chapter 2. Permutations and Combinations In this chapter, we define sets and count the objects in them. Example Let S be the set of students in this classroom today. Find

More information

HIGH SCHOOL - PROBLEMS

HIGH SCHOOL - PROBLEMS PURPLE COMET! MATH MEET April 2013 HIGH SCHOOL - PROBLEMS Copyright c Titu Andreescu and Jonathan Kane Problem 1 Two years ago Tom was 25% shorter than Mary. Since then Tom has grown 20% taller, and Mary

More information

Introduction. Firstly however we must look at the Fundamental Principle of Counting (sometimes referred to as the multiplication rule) which states:

Introduction. Firstly however we must look at the Fundamental Principle of Counting (sometimes referred to as the multiplication rule) which states: Worksheet 4.11 Counting Section 1 Introduction When looking at situations involving counting it is often not practical to count things individually. Instead techniques have been developed to help us count

More information

The Product Rule The Product Rule: A procedure can be broken down into a sequence of two tasks. There are n ways to do the first task and n

The Product Rule The Product Rule: A procedure can be broken down into a sequence of two tasks. There are n ways to do the first task and n Chapter 5 Chapter Summary 5.1 The Basics of Counting 5.2 The Pigeonhole Principle 5.3 Permutations and Combinations 5.5 Generalized Permutations and Combinations Section 5.1 The Product Rule The Product

More information

Counting. Chapter 6. With Question/Answer Animations

Counting. Chapter 6. With Question/Answer Animations . All rights reserved. Authorized only for instructor use in the classroom. No reproduction or further distribution permitted without the prior written consent of McGraw-Hill Education. Counting Chapter

More information

Math 475, Problem Set #3: Solutions

Math 475, Problem Set #3: Solutions Math 475, Problem Set #3: Solutions A. Section 3.6, problem 1. Also: How many of the four-digit numbers being considered satisfy (a) but not (b)? How many satisfy (b) but not (a)? How many satisfy neither

More information

n r for the number. (n r)!r!

n r for the number. (n r)!r! Throughout we use both the notations ( ) n r and C n n! r for the number (n r)!r! 1 Ten points are distributed around a circle How many triangles have all three of their vertices in this 10-element set?

More information

Twenty-sixth Annual UNC Math Contest First Round Fall, 2017

Twenty-sixth Annual UNC Math Contest First Round Fall, 2017 Twenty-sixth Annual UNC Math Contest First Round Fall, 07 Rules: 90 minutes; no electronic devices. The positive integers are,,,,.... Find the largest integer n that satisfies both 6 < 5n and n < 99..

More information

Combinatorics: The Fine Art of Counting

Combinatorics: The Fine Art of Counting Combinatorics: The Fine Art of Counting The Final Challenge Part One Solutions Whenever the question asks for a probability, enter your answer as either 0, 1, or the sum of the numerator and denominator

More information

PERMUTATIONS AND COMBINATIONS

PERMUTATIONS AND COMBINATIONS PERMUTATIONS AND COMBINATIONS 1. Fundamental Counting Principle Assignment: Workbook: pg. 375 378 #1-14 2. Permutations and Factorial Notation Assignment: Workbook pg. 382-384 #1-13, pg. 526 of text #22

More information

CHAPTER - 7 PERMUTATIONS AND COMBINATIONS KEY POINTS When a job (task) is performed in different ways then each way is called the permutation. Fundamental Principle of Counting : If a job can be performed

More information

UK JUNIOR MATHEMATICAL CHALLENGE. April 25th 2013 EXTENDED SOLUTIONS

UK JUNIOR MATHEMATICAL CHALLENGE. April 25th 2013 EXTENDED SOLUTIONS UK JUNIOR MATHEMATICAL CHALLENGE April 5th 013 EXTENDED SOLUTIONS These solutions augment the printed solutions that we send to schools. For convenience, the solutions sent to schools are confined to two

More information

Introduction to Counting and Probability

Introduction to Counting and Probability Randolph High School Math League 2013-2014 Page 1 If chance will have me king, why, chance may crown me. Shakespeare, Macbeth, Act I, Scene 3 1 Introduction Introduction to Counting and Probability Counting

More information

12th Bay Area Mathematical Olympiad

12th Bay Area Mathematical Olympiad 2th Bay Area Mathematical Olympiad February 2, 200 Problems (with Solutions) We write {a,b,c} for the set of three different positive integers a, b, and c. By choosing some or all of the numbers a, b and

More information

Discrete Mathematics: Logic. Discrete Mathematics: Lecture 15: Counting

Discrete Mathematics: Logic. Discrete Mathematics: Lecture 15: Counting Discrete Mathematics: Logic Discrete Mathematics: Lecture 15: Counting counting combinatorics: the study of the number of ways to put things together into various combinations basic counting principles

More information

Multiple Choice Questions for Review

Multiple Choice Questions for Review Review Questions Multiple Choice Questions for Review 1. Suppose there are 12 students, among whom are three students, M, B, C (a Math Major, a Biology Major, a Computer Science Major. We want to send

More information

International Contest-Game MATH KANGAROO

International Contest-Game MATH KANGAROO International Contest-Game MATH KANGAROO Part A: Each correct answer is worth 3 points. 1. The number 200013-2013 is not divisible by (A) 2 (B) 3 (C) 5 (D) 7 (E) 11 2. The eight semicircles built inside

More information

Combinatorics: The Fine Art of Counting

Combinatorics: The Fine Art of Counting Combinatorics: The Fine Art of Counting The Final Challenge Part One You have 30 minutes to solve as many of these problems as you can. You will likely not have time to answer all the questions, so pick

More information

BRITISH COLUMBIA SECONDARY SCHOOL MATHEMATICS CONTEST, 2006 Senior Preliminary Round Problems & Solutions

BRITISH COLUMBIA SECONDARY SCHOOL MATHEMATICS CONTEST, 2006 Senior Preliminary Round Problems & Solutions BRITISH COLUMBIA SECONDARY SCHOOL MATHEMATICS CONTEST, 006 Senior Preliminary Round Problems & Solutions 1. Exactly 57.4574% of the people replied yes when asked if they used BLEU-OUT face cream. The fewest

More information

UNC Charlotte 2008 Algebra March 3, 2008

UNC Charlotte 2008 Algebra March 3, 2008 March 3, 2008 1. The sum of all divisors of 2008 is (A) 8 (B) 1771 (C) 1772 (D) 3765 (E) 3780 2. From the list of all natural numbers 2, 3,... 999, delete nine sublists as follows. First, delete all even

More information

9.5 Counting Subsets of a Set: Combinations. Answers for Test Yourself

9.5 Counting Subsets of a Set: Combinations. Answers for Test Yourself 9.5 Counting Subsets of a Set: Combinations 565 H 35. H 36. whose elements when added up give the same sum. (Thanks to Jonathan Goldstine for this problem. 34. Let S be a set of ten integers chosen from

More information

We congratulate you on your achievement in reaching the second round of the Ulpaniada Mathematics Competition and wish you continued success.

We congratulate you on your achievement in reaching the second round of the Ulpaniada Mathematics Competition and wish you continued success. BS D Dear Participant, Shevat 5774 /January 2014 We congratulate you on your achievement in reaching the second round of the Ulpaniada Mathematics Competition and wish you continued success. Please fill

More information

Combinatorics: The Fine Art of Counting

Combinatorics: The Fine Art of Counting Combinatorics: The Fine Art of Counting Lecture Notes Counting 101 Note to improve the readability of these lecture notes, we will assume that multiplication takes precedence over division, i.e. A / B*C

More information

UK JUNIOR MATHEMATICAL CHALLENGE. April 26th 2012

UK JUNIOR MATHEMATICAL CHALLENGE. April 26th 2012 UK JUNIOR MATHEMATICAL CHALLENGE April 6th 0 SOLUTIONS These solutions augment the printed solutions that we send to schools. For convenience, the solutions sent to schools are confined to two sides of

More information

Introduction. It gives you some handy activities that you can do with your child to consolidate key ideas.

Introduction. It gives you some handy activities that you can do with your child to consolidate key ideas. (Upper School) Introduction This booklet aims to show you how we teach the 4 main operations (addition, subtraction, multiplication and division) at St. Helen s College. It gives you some handy activities

More information

TOPIC 2: HOW TO COUNT

TOPIC 2: HOW TO COUNT TOPIC 2: HOW TO COUNT Problems and solutions on 'How many ways?' (Combinatorics). These start with very simple situations and illustrate how the methods can be extended to more difficult cases. 2. How

More information

JUST THE MATHS UNIT NUMBER PROBABILITY 2 (Permutations and combinations) A.J.Hobson

JUST THE MATHS UNIT NUMBER PROBABILITY 2 (Permutations and combinations) A.J.Hobson JUST THE MATHS UNIT NUMBER 19.2 PROBABILITY 2 (Permutations and combinations) by A.J.Hobson 19.2.1 Introduction 19.2.2 Rules of permutations and combinations 19.2.3 Permutations of sets with some objects

More information

UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST

UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST First Round For all Colorado Students Grades 7-12 October 31, 2009 You have 90 minutes no calculators allowed The average of n numbers is their sum divided

More information

Exercises Exercises. 1. List all the permutations of {a, b, c}. 2. How many different permutations are there of the set {a, b, c, d, e, f, g}?

Exercises Exercises. 1. List all the permutations of {a, b, c}. 2. How many different permutations are there of the set {a, b, c, d, e, f, g}? Exercises Exercises 1. List all the permutations of {a, b, c}. 2. How many different permutations are there of the set {a, b, c, d, e, f, g}? 3. How many permutations of {a, b, c, d, e, f, g} end with

More information

MAT3707. Tutorial letter 202/1/2017 DISCRETE MATHEMATICS: COMBINATORICS. Semester 1. Department of Mathematical Sciences MAT3707/202/1/2017

MAT3707. Tutorial letter 202/1/2017 DISCRETE MATHEMATICS: COMBINATORICS. Semester 1. Department of Mathematical Sciences MAT3707/202/1/2017 MAT3707/0//07 Tutorial letter 0//07 DISCRETE MATHEMATICS: COMBINATORICS MAT3707 Semester Department of Mathematical Sciences SOLUTIONS TO ASSIGNMENT 0 BARCODE Define tomorrow university of south africa

More information

Meet #5 March Intermediate Mathematics League of Eastern Massachusetts

Meet #5 March Intermediate Mathematics League of Eastern Massachusetts Meet #5 March 2008 Intermediate Mathematics League of Eastern Massachusetts Meet #5 March 2008 Category 1 Mystery 1. In the diagram to the right, each nonoverlapping section of the large rectangle is

More information

MATH 351 Fall 2009 Homework 1 Due: Wednesday, September 30

MATH 351 Fall 2009 Homework 1 Due: Wednesday, September 30 MATH 51 Fall 2009 Homework 1 Due: Wednesday, September 0 Problem 1. How many different letter arrangements can be made from the letters BOOKKEEPER. This is analogous to one of the problems presented in

More information

SHORT ANSWER TYPE. Q.1 In how many ways can clean & clouded (overcast) days occur in a week assuming that an entire day is either clean or clouded.

SHORT ANSWER TYPE. Q.1 In how many ways can clean & clouded (overcast) days occur in a week assuming that an entire day is either clean or clouded. Concept tracking test PC Time:-5hr 30mints SHORT ANSWER TYPE. Q.1 In how many ways can clean & clouded (overcast) days occur in a week assuming that an entire day is either clean or clouded. Q. Four visitors

More information

IMLEM Meet #5 March/April Intermediate Mathematics League of Eastern Massachusetts

IMLEM Meet #5 March/April Intermediate Mathematics League of Eastern Massachusetts IMLEM Meet #5 March/April 2013 Intermediate Mathematics League of Eastern Massachusetts Category 1 Mystery You may use a calculator. 1. Beth sold girl-scout cookies to some of her relatives and neighbors.

More information

AMC 10. Contest A. Tuesday, FEBRUARY 1, th Annual American Mathematics Contest 10

AMC 10. Contest A. Tuesday, FEBRUARY 1, th Annual American Mathematics Contest 10 Tuesday, FEBRUARY 1, 005 6 th Annual American Mathematics Contest 10 AMC 10 Contest A The MATHEMATICAL ASSOCIATION OF AMERICA American Mathematics Competitions 1. DO NOT OPEN THIS BOOKLET UNTIL YOUR PROCTOR

More information

16. DOK 1, I will succeed." In this conditional statement, the underlined portion is

16. DOK 1, I will succeed. In this conditional statement, the underlined portion is Geometry Semester 1 REVIEW 1. DOK 1 The point that divides a line segment into two congruent segments. 2. DOK 1 lines have the same slope. 3. DOK 1 If you have two parallel lines and a transversal, then

More information

Dyck paths, standard Young tableaux, and pattern avoiding permutations

Dyck paths, standard Young tableaux, and pattern avoiding permutations PU. M. A. Vol. 21 (2010), No.2, pp. 265 284 Dyck paths, standard Young tableaux, and pattern avoiding permutations Hilmar Haukur Gudmundsson The Mathematics Institute Reykjavik University Iceland e-mail:

More information

B 2 3 = 4 B 2 = 7 B = 14

B 2 3 = 4 B 2 = 7 B = 14 Bridget bought a bag of apples at the grocery store. She gave half of the apples to Ann. Then she gave Cassie 3 apples, keeping 4 apples for herself. How many apples did Bridget buy? (A) 3 (B) 4 (C) 7

More information

MAT 409 Semester Exam: 80 points

MAT 409 Semester Exam: 80 points MAT 409 Semester Exam: 80 points Name Email Text # Impact on Course Grade: Approximately 25% Score Solve each problem based on the information provided. It is not necessary to complete every calculation.

More information

CLASS : XI Permutation and Combination SHEET NO.-1 ELEMENTARY PROBLEMS ON PERMUTATION & COMBINATION

CLASS : XI Permutation and Combination SHEET NO.-1 ELEMENTARY PROBLEMS ON PERMUTATION & COMBINATION SHEET-1 to 10 CLASS : XI Permutation and Combination SHEET NO.-1 ELEMENTARY PROBLEMS ON PERMUTATION & COMBINATION Q.1 In how many ways can clean & clouded (overcast) days occur in a week assuming that

More information

Permutation and Combination

Permutation and Combination BANKERSWAY.COM Permutation and Combination Permutation implies arrangement where order of things is important. It includes various patterns like word formation, number formation, circular permutation etc.

More information

Twenty-fourth Annual UNC Math Contest Final Round Solutions Jan 2016 [(3!)!] 4

Twenty-fourth Annual UNC Math Contest Final Round Solutions Jan 2016 [(3!)!] 4 Twenty-fourth Annual UNC Math Contest Final Round Solutions Jan 206 Rules: Three hours; no electronic devices. The positive integers are, 2, 3, 4,.... Pythagorean Triplet The sum of the lengths of the

More information

State Math Contest (Junior)

State Math Contest (Junior) Name: Student ID: State Math Contest (Junior) Instructions: Do not turn this page until your proctor tells you. Enter your name, grade, and school information following the instructions given by your proctor.

More information

Sets, Venn Diagrams & Counting

Sets, Venn Diagrams & Counting MT 142 College Mathematics Sets, Venn Diagrams & Counting Module SC Terri Miller revised December 13, 2010 What is a set? Sets set is a collection of objects. The objects in the set are called elements

More information

6-1. Angles of Polygons. Lesson 6-1. What You ll Learn. Active Vocabulary

6-1. Angles of Polygons. Lesson 6-1. What You ll Learn. Active Vocabulary 6-1 Angles of Polygons What You ll Learn Skim Lesson 6-1. Predict two things that you expect to learn based on the headings and figures in the lesson. 1. 2. Lesson 6-1 Active Vocabulary diagonal New Vocabulary

More information

MATHEMATICS ON THE CHESSBOARD

MATHEMATICS ON THE CHESSBOARD MATHEMATICS ON THE CHESSBOARD Problem 1. Consider a 8 8 chessboard and remove two diametrically opposite corner unit squares. Is it possible to cover (without overlapping) the remaining 62 unit squares

More information

1. 1 Square Numbers and Area Models (pp. 6-10)

1. 1 Square Numbers and Area Models (pp. 6-10) Math 8 Unit 1 Notes Name: 1. 1 Square Numbers and Area Models (pp. 6-10) square number: the product of a number multiplied by itself; for example, 25 is the square of 5 perfect square: a number that is

More information

Mock AMC 10 Author: AlcumusGuy

Mock AMC 10 Author: AlcumusGuy 014-015 Mock AMC 10 Author: AlcumusGuy Proofreaders/Test Solvers: Benq sicilianfan ziyongcui INSTRUCTIONS 1. DO NOT PROCEED TO THE NEXT PAGE UNTIL YOU HAVE READ THE IN- STRUCTIONS AND STARTED YOUR TIMER..

More information

2018 AMC 10B. Problem 1

2018 AMC 10B. Problem 1 2018 AMC 10B Problem 1 Kate bakes 20-inch by 18-inch pan of cornbread. The cornbread is cut into pieces that measure 2 inches by 2 inches. How many pieces of cornbread does the pan contain? Problem 2 Sam

More information

Solutions of problems for grade R5

Solutions of problems for grade R5 International Mathematical Olympiad Formula of Unity / The Third Millennium Year 016/017. Round Solutions of problems for grade R5 1. Paul is drawing points on a sheet of squared paper, at intersections

More information

Park Forest Math Team. Meet #5. Number Theory. Self-study Packet

Park Forest Math Team. Meet #5. Number Theory. Self-study Packet Park Forest Math Team Meet #5 Number Theory Self-study Packet Problem Categories for this Meet: 1. Mystery: Problem solving 2. Geometry: Angle measures in plane figures including supplements and complements

More information

CHAPTER 8 Additional Probability Topics

CHAPTER 8 Additional Probability Topics CHAPTER 8 Additional Probability Topics 8.1. Conditional Probability Conditional probability arises in probability experiments when the person performing the experiment is given some extra information

More information

Caltech Harvey Mudd Mathematics Competition February 20, 2010

Caltech Harvey Mudd Mathematics Competition February 20, 2010 Mixer Round Solutions Caltech Harvey Mudd Mathematics Competition February 0, 00. (Ying-Ying Tran) Compute x such that 009 00 x (mod 0) and 0 x < 0. Solution: We can chec that 0 is prime. By Fermat s Little

More information

Rosen, Discrete Mathematics and Its Applications, 6th edition Extra Examples

Rosen, Discrete Mathematics and Its Applications, 6th edition Extra Examples Rosen, Discrete Mathematics and Its Applications, 6th edition Extra Examples Section 1.7 Proof Methods and Strategy Page references correspond to locations of Extra Examples icons in the textbook. p.87,

More information

Western Australian Junior Mathematics Olympiad 2007

Western Australian Junior Mathematics Olympiad 2007 Western Australian Junior Mathematics Olympiad 2007 Individual Questions 100 minutes General instructions: Each solution in this part is a positive integer less than 100. No working is needed for Questions

More information

Squares Multiplication Facts: Square Numbers

Squares Multiplication Facts: Square Numbers LESSON 61 page 328 Squares Multiplication Facts: Square Numbers Name Teacher Notes: Introduce Hint #21 Multiplication/ Division Fact Families. Review Multiplication Table on page 5 and Quadrilaterals on

More information

Chapter 4: Patterns and Relationships

Chapter 4: Patterns and Relationships Chapter : Patterns and Relationships Getting Started, p. 13 1. a) The factors of 1 are 1,, 3,, 6, and 1. The factors of are 1,,, 7, 1, and. The greatest common factor is. b) The factors of 16 are 1,,,,

More information

NRP Math Challenge Club

NRP Math Challenge Club Week 7 : Manic Math Medley 1. You have exactly $4.40 (440 ) in quarters (25 coins), dimes (10 coins), and nickels (5 coins). You have the same number of each type of coin. How many dimes do you have? 2.

More information

Section 1: Whole Numbers

Section 1: Whole Numbers Grade 6 Play! Mathematics Answer Book 67 Section : Whole Numbers Question Value and Place Value of 7-digit Numbers TERM 2. Study: a) million 000 000 A million has 6 zeros. b) million 00 00 therefore million

More information

2. A number x is 2 more than the product of its reciprocal and its additive inverse. In which interval does the number lie?

2. A number x is 2 more than the product of its reciprocal and its additive inverse. In which interval does the number lie? 2 nd AMC 2001 2 1. The median of the list n, n + 3, n + 4, n + 5, n + 6, n + 8, n +, n + 12, n + 15 is. What is the mean? (A) 4 (B) 6 (C) 7 (D) (E) 11 2. A number x is 2 more than the product of its reciprocal

More information

Downloaded from

Downloaded from 1 IX Mathematics Chapter 8: Quadrilaterals Chapter Notes Top Definitions 1. A quadrilateral is a closed figure obtained by joining four points (with no three points collinear) in an order. 2. A diagonal

More information

IB HL Mathematics Homework 2014

IB HL Mathematics Homework 2014 IB HL Mathematics Homework Counting, Binomial Theorem Solutions 1) How many permutations are there of the letters MATHEMATICS? Using the permutation formula, we get 11!/(2!2!2!), since there are 2 M's,

More information

Strings. A string is a list of symbols in a particular order.

Strings. A string is a list of symbols in a particular order. Ihor Stasyuk Strings A string is a list of symbols in a particular order. Strings A string is a list of symbols in a particular order. Examples: 1 3 0 4 1-12 is a string of integers. X Q R A X P T is a

More information

BMT 2018 Combinatorics Test Solutions March 18, 2018

BMT 2018 Combinatorics Test Solutions March 18, 2018 . Bob has 3 different fountain pens and different ink colors. How many ways can he fill his fountain pens with ink if he can only put one ink in each pen? Answer: 0 Solution: He has options to fill his

More information

CIE 2016 Math Comp Math Fun Answer Key. Name: ID: Grade: 7 Room: Start Time: Finish Time:

CIE 2016 Math Comp Math Fun Answer Key. Name: ID: Grade: 7 Room: Start Time: Finish Time: CIE 2016 Math Comp Math Fun Answer Key Name: ID: Grade: 7 Room: Start Time: Finish Time: No. Answer No. Answer 1 C 26 D 2 B 27 B 3 E 28 C 4 C 29 D 5 E 30 A 6 B 31 D 7 A 32 A 8 B 33 C 9 E 34 C 10 D 35 A

More information

2 Reasoning and Proof

2 Reasoning and Proof www.ck12.org CHAPTER 2 Reasoning and Proof Chapter Outline 2.1 INDUCTIVE REASONING 2.2 CONDITIONAL STATEMENTS 2.3 DEDUCTIVE REASONING 2.4 ALGEBRAIC AND CONGRUENCE PROPERTIES 2.5 PROOFS ABOUT ANGLE PAIRS

More information

THE PRODUCT PRINCIPLE

THE PRODUCT PRINCIPLE 214 OUNTING ND THE INOMIL EXNSION (hapter 8) OENING ROLEM t an I Mathematics Teachers onference there are 273 delegates present. The organising committee consists of 10 people. ² If each committee memer

More information

Staircase Rook Polynomials and Cayley s Game of Mousetrap

Staircase Rook Polynomials and Cayley s Game of Mousetrap Staircase Rook Polynomials and Cayley s Game of Mousetrap Michael Z. Spivey Department of Mathematics and Computer Science University of Puget Sound Tacoma, Washington 98416-1043 USA mspivey@ups.edu Phone:

More information

Created by T. Madas COMBINATORICS. Created by T. Madas

Created by T. Madas COMBINATORICS. Created by T. Madas COMBINATORICS COMBINATIONS Question 1 (**) The Oakwood Jogging Club consists of 7 men and 6 women who go for a 5 mile run every Thursday. It is decided that a team of 8 runners would be picked at random

More information

Exploring Concepts with Cubes. A resource book

Exploring Concepts with Cubes. A resource book Exploring Concepts with Cubes A resource book ACTIVITY 1 Gauss s method Gauss s method is a fast and efficient way of determining the sum of an arithmetic series. Let s illustrate the method using the

More information

GPLMS Revision Programme GRADE 6 Booklet

GPLMS Revision Programme GRADE 6 Booklet GPLMS Revision Programme GRADE 6 Booklet Learner s name: School name: Day 1. 1. a) Study: 6 units 6 tens 6 hundreds 6 thousands 6 ten-thousands 6 hundredthousands HTh T Th Th H T U 6 6 0 6 0 0 6 0 0 0

More information

Math236 Discrete Maths with Applications

Math236 Discrete Maths with Applications Math236 Discrete Maths with Applications P. Ittmann UKZN, Pietermaritzburg Semester 1, 2012 Ittmann (UKZN PMB) Math236 2012 1 / 43 The Multiplication Principle Theorem Let S be a set of k-tuples (s 1,

More information

CISC 1400 Discrete Structures

CISC 1400 Discrete Structures CISC 1400 Discrete Structures Chapter 6 Counting CISC1400 Yanjun Li 1 1 New York Lottery New York Mega-million Jackpot Pick 5 numbers from 1 56, plus a mega ball number from 1 46, you could win biggest

More information

Solutions to Exercises Chapter 6: Latin squares and SDRs

Solutions to Exercises Chapter 6: Latin squares and SDRs Solutions to Exercises Chapter 6: Latin squares and SDRs 1 Show that the number of n n Latin squares is 1, 2, 12, 576 for n = 1, 2, 3, 4 respectively. (b) Prove that, up to permutations of the rows, columns,

More information

Combinatorics: The Fine Art of Counting

Combinatorics: The Fine Art of Counting Combinatorics: The Fine Art of Counting Week Four Problems Please read through the entire menu and try to classify each problem into one of the following types: Counting Subsets, Distinct Partitions, Block

More information

CK-12 Geometry Inductive Reasoning

CK-12 Geometry Inductive Reasoning CK-12 Geometry Inductive Reasoning Learning Objectives Recognize visual and number patterns. Extend and generalize patterns. Write a counterexample. Review Queue a. Look at the patterns of numbers below.

More information