A fair coin is tossed 10 times . Let n m , in the lowest terms , be the probability that heads never occurs on consecutive tosses. Then find m + n .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Perhaps it's k from 0 to 5 since no consecutive heads are allowed.
Log in to reply
For k > 5 , ( k 1 0 − k + 1 ) = 0 , for that reason. Going to ten just saves me from having to write a line justifying stopping at 5- either sum is correct. :)
Let N H ( n ) and N T ( n ) denote the number of coin-toss sequences of length n and ending with Heads and Tails respectively, such that no two heads occur on consecutive tosses. Then it easily follows that the following recursion holds N H ( n + 1 ) = N T ( n ) N T ( n + 1 ) = N H ( n ) + N T ( n ) We also have the initial condition that N H ( 2 ) = 1 , N T ( 2 ) = 2 Thus we can solve for N H ( 1 0 ) = 5 5 , N T ( 1 0 ) = 8 9 (by hand, by matrix exponents or by a computer program) and find that the number of permissible sequence of length 1 0 is simply N H ( 1 0 ) + N T ( 1 0 ) = 1 4 4 . Hence the required probability is 2 1 0 5 5 = 6 4 9 .
Problem Loading...
Note Loading...
Set Loading...
Count the number of ways a coin can be tossed 10 times and never have heads come up on consecutive tosses. Imagine putting 10 coins reflecting the tosses in order in a row. When k heads are tossed, 1 0 − k tails are tossed. There are 1 0 − k + 1 positions for each of the heads, so there are ( k 1 0 − k + 1 ) total arrangements. Therefore, the total number of ways to toss the coin with this restriction is ∑ k = 0 1 0 ( k 1 0 − k + 1 ) = 1 4 4 .
Clearly, there are 2 1 0 possible outcomes when flipping a coin ten times. Therefore, the probability that heads never occurred on consecutive tosses is 2 1 0 1 4 4 = 6 4 9 , so the answer is 7 3 .