Another coin toss problem!
A fair coin is tossed times. What is the probability that two heads do not occur consecutively? Express the probability as a decimal.
This problem is not original. This is a hard problem, roughly at the difficulty level of a problem in the BMO. This problem is part of this set .
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.
Let h ( n ) be the number of sequences of heads and tails of length n for which two heads do not appear consecutively.
Then h ( 1 ) = 2 , ( H , T ), and h ( 2 ) = 3 , ( H T , T H , T T ).
For n > 2 we can have either
(i) a sequence beginning with a tail followed by n − 1 tosses with no two consecutive heads, or
(ii) a sequence beginning with a head, then a tail, followed by n − 2 tosses with no two consecutive heads.
Thus for n > 2 we have h ( n ) = h ( n − 1 ) + h ( n − 2 ) . So with our initial values of h ( 1 ) = 2 and h ( 2 ) = 3 we end up with a shifted Fibonacci sequence, with successive terms 2 , 3 , 5 , 8 , 1 3 , 2 1 , 3 4 , 5 5 , 8 9 and h ( 1 0 ) = 1 4 4 .
Now as there a total of 2 1 0 = 1 0 2 4 possible sequences of 1 0 tosses without restrictions, the desired probability is 1 0 2 4 1 4 4 = 6 4 9 = 0 . 1 4 0 6 to 4 decimal places.