当前位置:高等教育资讯网  >  中国高校课件下载中心  >  大学文库  >  浏览文档

《Mathematics for Computer》Lecture 24 Special Topics

资源类别:文库,文档格式:PDF,文档页数:7,文件大小:61.82KB,团购合买
1 Streaks someone tapping the H and t keys in a what felt like a random way?0 Nas the table of H's and T's below generated by flipping a fair coin 100 times,
点击下载完整版文档(PDF)

6.042/18.] Mathematics for Computer Science May12,2005 Srini devadas and Eric Lehman Lecture notes Special Topics 1 Streaks someone tapping the H and t keys in a what felt like a random way?0 Nas the table of H's and T's below generated by flipping a fair coin 100 times, or by HTTTHTHTTHTTHTHTHTHT TTTHHTHHTHTHTTHHATHT HHTHHTTTHHATHTTHHHHT THTTHATHTHTATHTTHTHH HTTHHHTHTHHHTHTHHHTH There is no way to be sure. However, this sequence has a distinctive feature that is com- mon in"random"human-generated sequences and unusual in truly random sequences namely, there is no long streak of H's or Ts. In fact, no symbol appears above more than four times in a row. How likely is that? If we flip a fair coin 100 times, what is the probability that we never get five heads in a row? 1.1 From a Probability Problem to a Counting Problem The sample space for this experiment is (H, r)o0; that is, the set of all length-100 se- quences of H's and Ts. If the coin tosses are fair and independent, then all 2 o such se- quences are equally likely. Therefore, we need only count the number of sequences with no streak of five heads; given that, the probability that a random length-100 sequence contains no such streak is: Pr(sequence has no HHHHH) t sequences with no HHHHH This is a common situation. We have reduced a probability problem to a counting problem. Unfortunatley, we have no hope of solving the counting problem by direct computation. No computer can consider all 2100 sequences of H's and T's, keeping track of how many lack a streak of five heads. But, on the bright side, there is a big bag of mathematical tricks for solving counting problems. In this case, we'll use a recurrence equation. The recurrence equation approach involves two steps

6.042/18.062J Mathematics for Computer Science May 12, 2005 Srini Devadas and Eric Lehman Lecture Notes Special Topics 1 Streaks Was the table of H’s and T’s below generated by flipping a fair coin 100 times, or by someone tapping the H and T keys in a what felt like a random way? HTTTHTHTTHTTHTHTHTHT TTTHHTHHTHTHTTHHHTHT HHTHHTTTHHHTHTTHHHHT THTTHHTHTHTHTHTTHTHH HTTHHHTHTHHHTHTHHHTH There is no way to be sure. However, this sequence has a distinctive feature that is com￾mon in “random” human-generated sequences and unusual in truly random sequences: namely, there is no long streak of H’s or T’s. In fact, no symbol appears above more than four times in a row. How likely is that? If we flip a fair coin 100 times, what is the probability that we never get five heads in a row? 1.1 From a Probability Problem to a Counting Problem The sample space for this experiment is {H,T} 100; that is, the set of all length-100 se￾quences of H’s and T’s. If the coin tosses are fair and independent, then all 2 100 such se￾quences are equally likely. Therefore, we need only count the number of sequences with no streak of five heads; given that, the probability that a random length-100 sequence contains no such streak is: Pr (sequence has no HHHHH) = # sequences with no HHHHH 2 100 This is a common situation. We have reduced a probability problem to a counting problem. Unfortunatley, we have no hope of solving the counting problem by direct computation. No computer can consider all 2 100 sequences of H’s and T’s, keeping track of how many lack a streak of five heads. But, on the bright side, there is a big bag of mathematical tricks for solving counting problems. In this case, we’ll use a recurrence equation. The recurrence equation approach involves two steps:

1. Solve some small problems 2. Solve the n-th problem using preceding solutions Lets see how this approach plays out in the analysis of streaks 1. 2 Step 1: Solve Small Instances Let Sn be the set of length-n sequences of H's and T's that do not contain a streak of five heads. Our eventual goal is to compute Soo]. But for now, let's just compute SnI for some very small values of n: Ssss 1= 2(H and T) 4(HH, HT, TH, and TT) 8 Ss|= 31(HHHHH is excluded!) These are called base cases 1. 3 Step 2: Solve the n-th Problem Using Preceding Solutions We can classify the sequences in Sn into five groups 1. Sequences that end with a T 2. Sequences that end with TH 3. Sequences that end with THH 4. Sequences that end with THHH 5. Sequences that end with THHHH Every sequence in Sn falls into exactly one of these groups. Thus, the size of Sn is the sum of the sizes of these five groups How many sequences are there in the first group? That is, how many sequences in Sn end with T? The preceding n- l symbols in such lence can not contain a streak of five heads. Therefore, those n- l symbols form a sequence in Sn-1. On the other hand

2 Special Topics 1. Solve some small problems. 2. Solve the n-th problem using preceding solutions. Let’s see how this approach plays out in the analysis of streaks. 1.2 Step 1: Solve Small Instances Let Sn be the set of length-n sequences of H’s and T’s that do not contain a streak of five heads. Our eventual goal is to compute |S100|. But for now, let’s just compute |Sn| for some very small values of n: |S1| = 2 (H and T) |S2| = 4 (HH, HT, TH, and TT) |S3| = 8 |S4| = 16 |S5| = 31 (HHHHH is excluded!) These are called base cases. 1.3 Step 2: Solve the n-th Problem Using Preceding Solutions We can classify the sequences in Sn into five groups: 1. Sequences that end with a T. 2. Sequences that end with TH. 3. Sequences that end with THH. 4. Sequences that end with THHH. 5. Sequences that end with THHHH. Every sequence in Sn falls into exactly one of these groups. Thus, the size of Sn is the sum of the sizes of these five groups. How many sequences are there in the first group? That is, how many sequences in Sn end with T? The preceding n − 1 symbols in such a sequence can not contain a streak of five heads. Therefore, those n − 1 symbols form a sequence in Sn−1. On the other hand

Special Topics putting a T at then end of any sequence in Sn-1 gives a sequence in Sn. Therefore, the number of sequences in the first group is exactly equal to ISn-1l How many sequences are there in the second group? Arguing as before, the preceding 2 symbols in each such sequence must form a sequence in Sn-2. On the other hand, appending TH to any sequence in Sn-2 gives a sequence in the second group. Therefore, there are exactly [Sn-2 sequences in the second group SnI= Sn-1+Sn-2+Sn-3+Sn-4+Sn-(for n>5) This recurrence equation expresses the solution to a large problem(ISn) in terms of the solutions to smaller problems(Sn-1,Sr By combining the base cases and the recurrence equation, we can compute S6l, IS I Ssl, and so forth until we reach Stool S6|=|Ss|+|S4|+|S3|+|S2|+|S1 31+16+8+4+2+1 Sr|=|S6|+|S+|S4|+|S3|+|S2 62+31+16+8+4+2 123 Computing S1ool still requires about 500 additions, so a computer helps. Plugging the value of Shoo into our earlier probability formula, we find Pr(sequence has no HHHHH)=0.193 Thus, four out of five sequences of 100 coin tosses contain a streak of five heads. By symmetry, we also know that four out of five sequences contain a streak of five tails. If we suppose that these two events are nearly independent, then only about one random sequence in twenty-five contains no streak of five heads or five tails. This is the situation for the sequence given at the start of this section. Sure enough, I made up that sequence up by""tapping keys!

Special Topics 3 putting a T at then end of any sequence in Sn−1 gives a sequence in Sn. Therefore, the number of sequences in the first group is exactly equal to |Sn−1|. How many sequences are there in the second group? Arguing as before, the preceding n − 2 symbols in each such sequence must form a sequence in Sn−2. On the other hand, appending TH to any sequence in Sn−2 gives a sequence in the second group. Therefore, there are exactly |Sn−2| sequences in the second group. By similar reasoning, the number of sequences in the third group is |Sn−3|, the number in the fourth is |Sn−4|, and the number in the fifth is |Sn−5|. Therefore, we have: |Sn| = |Sn−1| + |Sn−2| + |Sn−3| + |Sn−4| + |Sn−5| (for n > 5) This recurrence equation expresses the solution to a large problem (|Sn|) in terms of the solutions to smaller problems (Sn−1, Sn−2, ...). By combining the base cases and the recurrence equation, we can compute |S6|, |S7|, |S8|, and so forth until we reach |S100|. |S6| = |S5| + |S4| + |S3| + |S2| + |S1| = 31 + 16 + 8 + 4 + 2 + 1 = 62 |S7| = |S6| + |S5| + |S4| + |S3| + |S2| = 62 + 31 + 16 + 8 + 4 + 2 = 123 |S8| = ... Computing |S100| still requires about 500 additions, so a computer helps. Plugging the value of |S100| into our earlier probability formula, we find: Pr (sequence has no HHHHH) = 0.193 ... Thus, four out of five sequences of 100 coin tosses contain a streak of five heads. By symmetry, we also know that four out of five sequences contain a streak of five tails. If we suppose that these two events are nearly independent, then only about one random sequence in twenty-five contains no streak of five heads or five tails. This is the situation for the sequence given at the start of this section. Sure enough, I made up that sequence up by “randomly” tapping keys!

Special Topics 2 The Truel Three gunfighters meet for a truel, a three-person duel. Gunfighter A hits his target 50% of the time, gunfighter B hits 75% of the time, and gunfighter C hits 100% of the time The gunfighters take turns shooting in the order A, B, C, A, B, C, etc. Of course, a dead gunfighter misses his turn. The last one standing is the winner. What is A's best strategy? If A kills C, then B will probably kill A on the next shot. On the other hand, if a kills b then c will certainly kill a on the next shot. This does not look good. But there is a another possibility: A could intentionally miss, let B and C shoot it out, and then try to kill the winner Let's evaluate that strategy, assuming that B and c actually try to hit each other C WNS A kills c From the tree diagram, we have 1 Pr wins 8 12.5% Now let a be the probability that b eventually wins in the situation where C is dead and a has the next shot. This situation arises at two different points in our tree diagram. We can exploit that fact to obtain an equation expressing c in terms of itself 1311 Solving this equation, we find that r=3/7. The probability that b wins overall is

4 Special Topics 2 The Truel Three gunfighters meet for a truel, a three-person duel. Gunfighter A hits his target 50% of the time, gunfighter B hits 75% of the time, and gunfighter C hits 100% of the time. The gunfighters take turns shooting in the order A, B, C, A, B, C, etc. Of course, a dead gunfighter misses his turn. The last one standing is the winner. What is A’s best strategy? If A kills C, then B will probably kill A on the next shot. On the other hand, if A kills B, then C will certainly kill A on the next shot. This does not look good. But there is a another possibility: A could intentionally miss, let B and C shoot it out, and then try to kill the winner! Let’s evaluate that strategy, assuming that B and C actually try to hit each other. x = prob. that B wins from this state A miss 1/2 1/2 B kills C 3/4 1/4 B miss C kills B 1 A miss 1/2 A kills C 1/2 C kills A 1 B miss 1/4 B kills A 3/4 A kills B . . . A WINS B WINS A WINS C WINS From the tree diagram, we have: Pr (C wins) = 1 4 · 1 · 1 2 · 1 = 1 8 = 12.5% Now let x be the probability that B eventually wins in the situation where C is dead and A has the next shot. This situation arises at two different points in our tree diagram. We can exploit that fact to obtain an equation expressing x in terms of itself: x = 1 2 · 3 4 + 1 2 · 1 4 · x Solving this equation, we find that x = 3/7. The probability that B wins overall is:

Special Topics Pr(b wins) 3-49 28 Finallv, we have Pr(A wins)= 1-Pr(B wins)-Pr(C wins) 55.4% Amazingly, the worst shooter has the best chance of winning, and the best shooter has the worst chance of winning Of course, an explicit assumption in this analysis was that B and C are both shooting to kill, unlike A in the first round. If B and C have no such requirement, then the problem is underspecified; there is no definite mathematical solution. Every gunfighter might reason that he is better off not shooting and the whole lot might go toast smores over a campfire 3 Penney-Ante Let's play a game! We repeatedly flip a fair coin. You have the sequence HHT, and I have the sequence HTT. If your sequence comes up first, then you win. If my sequence comes up first, then I win. For example, if the sequence of tosses is THTHTHHT then you win. This problem is tricky, because the game could go on for an arbitrarily long time. Draw enough of the tree diagram to see a pattern, and then sum up the probabilities of the(infinitely many) outcomes in which you win A partial tree diagram is shown below. All edge probabilities are 1 /2

Special Topics 5 Pr (B wins) = 3 4 · x = 9 28 ≈ 32.1% Finally, we have: Pr (A wins) = 1 − Pr (B wins) − Pr (C wins) ≈ 55.4% Amazingly, the worst shooter has the best chance of winning, and the best shooter has the worst chance of winning! Of course, an explicit assumption in this analysis was that B and C are both shooting to kill, unlike A in the first round. If B and C have no such requirement, then the problem is underspecified; there is no definite mathematical solution. Every gunfighter might reason that he is better off not shooting and the whole lot might go toast smores over a campfire. 3 Penney-Ante Let’s play a game! We repeatedly flip a fair coin. You have the sequence HHT, and I have the sequence HTT. If your sequence comes up first, then you win. If my sequence comes up first, then I win. For example, if the sequence of tosses is: TTHTHTHHT then you win. This problem is tricky, because the game could go on for an arbitrarily long time. Draw enough of the tree diagram to see a pattern, and then sum up the probabilities of the (infinitely many) outcomes in which you win. A partial tree diagram is shown below. All edge probabilities are 1/2

same I win! Let's first focus on the subtree shown in bold. note that if two heads are flipped in a row, then you are guaranteed to win eventually. The sum of the probabilities of all your winning outcomes in this subtree is 4+16+64 1/4 The upppermost subtree marked same is the identical to the one shown in bold, except that each outcome probability is reduced by 1/2, because it is one edge farther from the root. Thus, the sum of your winning outcomes in this subtree is 1/6. Similarly, the sum of your winning outcomes in the next subtree marked same is 1/12, and so forth. Overall, your probability of winning is 31-1/2 3 In fact, as long as you pick a sequence first, and I pick a sequence second, I have at least a 2/ 3 probability of winning the game How is this possible? We know that each sequence of length three is equally likely,so therefore there should be no advantage to one sequence over another, and certainly no disadvantage to picking a sequence first. However, as we've already seen, this does not appear to be true

6 Special Topics H H H H H T T T T T T T H H you win (eventually) pr = 1/4 you win pr = 1/16 I win! I win! you win pr = 1/64 etc. etc. same same Let’s first focus on the subtree shown in bold. Note that if two heads are flipped in a row, then you are guaranteed to win eventually. The sum of the probabilities of all your winning outcomes in this subtree is: 1 4 + 1 16 + 1 64 + ... = 1 4 · 1 1 − 1/4 = 1 3 The upppermost subtree marked same is the identical to the one shown in bold, except that each outcome probability is reduced by 1/2, because it is one edge farther from the root. Thus, the sum of your winning outcomes in this subtree is 1/6. Similarly, the sum of your winning outcomes in the next subtree marked same is 1/12, and so forth. Overall, your probability of winning is: 1 3 + 1 6 + 1 12 + ... = 1 3 · 1 1 − 1/2 = 2 3 In fact, as long as you pick a sequence first, and I pick a sequence second, I can always have at least a 2/3 probability of winning the game. How is this possible? We know that each sequence of length three is equally likely, so therefore there should be no advantage to one sequence over another, and certainly no disadvantage to picking a sequence first. However, as we’ve already seen, this does not appear to be true

Special Topics One way to observe that I can always win with probability of at least 2/3 is if you first select the sequence hhh. i then select the sequence thh. i claim that in this situation my probability of winning is 778. Why is this true? In the case where the first three tosses are HHH, with probability 1/8, you win immediately. The remaining 7/8 of the time, the game continues Suppose at some point later on, say starting at toss 30, the sequence HHH finally appears for the first time. This means that nowhere earlier than toss 30 do we observe HHH. So, toss 29 must have been a T. However, this means that the sequence THH appeared before the sequence HHH, and I won! Using this logic, no matter when in the series of flips HHH appeared, THH must have appeared first, except when HHH is the first three coin flir P So, 7/8 of the time THH occurs before HHH, and I win! Pretty good odds Similar logic can be used for each sequence of length three selected by my opponent The key is that I must pick my sequence after my opponent selects his sequence in order to guarantee that I have the advantage. Table 1 contains the relevant information to ensure you continued success Table 1: In Penny-ante, your best response to your opponent's choice, and the corresponding chance that your pattern appears first Opponent's Choice Your Choice Chance of Winning HHH THH 7/8 HHT THH 3/4 HTH HHT 2/3 THH TTH 2/3 HTT HHT 2/3 TH TTH 2/3 TTH TTT HTT 7/8

Special Topics 7 One way to observe that I can always win with probability of at least 2/3 is if you first select the sequence HHH. I then select the sequence THH. I claim that in this situation, my probability of winning is 7/8. Why is this true? In the case where the first three tosses are HHH, with probability 1/8, you win immediately. The remaining 7/8 of the time, the game continues. Suppose at some point later on, say starting at toss 30, the sequence HHH finally appears for the first time. This means that nowhere earlier than toss 30 do we observe HHH. So, toss 29 must have been a T. However, this means that the sequence THH appeared before the sequence HHH, and I won! Using this logic, no matter when in the series of flips HHH appeared, THH must have appeared first, except when HHH is the first three coin flips. So, 7/8 of the time THH occurs before HHH, and I win! Pretty good odds. Similar logic can be used for each sequence of length three selected by my opponent. The key is that I must pick my sequence after my opponent selects his sequence in order to guarantee that I have the advantage. Table 1 contains the relevant information to ensure you continued success. Table 1: In Penny-ante, your best response to your opponent’s choice, and the corresponding chance that your pattern appears first Opponent’s Choice Your Choice Chance of Winning HHH THH 7/8 HHT THH 3/4 HTH HHT 2/3 THH TTH 2/3 HTT HHT 2/3 THT TTH 2/3 TTH HTT 3/4 TTT HTT 7/8

点击下载完整版文档(PDF)VIP每日下载上限内不扣除下载券和下载次数;
按次数下载不扣除下载券;
24小时内重复下载只扣除一次;
顺序:VIP每日次数-->可用次数-->下载券;
已到末页,全文结束
相关文档

关于我们|帮助中心|下载说明|相关软件|意见反馈|联系我们

Copyright © 2008-现在 cucdc.com 高等教育资讯网 版权所有