返回题库

AIME 1990 · 第 9 题

AIME 1990 — Problem 9

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

A fair coin is to be tossed 1010_{}^{} times. Let ij\frac{i}{j}^{}_{}, in lowest terms, be the probability that heads never occur on consecutive tosses. Find i+ji+j_{}^{}.

解析

Solution

Solution 1

Clearly, at least 55 tails must be flipped; any less, then by the Pigeonhole Principle there will be heads that appear on consecutive tosses.

Consider the case when 55 tails occur. The heads must fall between the tails such that no two heads fall between the same tails, and must fall in the positions labeled (H)(H):

(H) T (H) T (H) T (H) T (H) T (H)(H)\ T\ (H)\ T\ (H)\ T\ (H)\ T\ (H)\ T\ (H)

There are six slots for the heads to be placed, but only 55 heads remaining. Thus, using stars-and-bars there are (65){6\choose5} possible combinations of 55 heads. Continuing this pattern, we find that there are i=611(i11i)=(65)+(74)+(83)+(92)+(101)+(110)=144\sum_{i=6}^{11} {i\choose{11-i}} = {6\choose5} + {7\choose4} + {8\choose3} + {9\choose2} + {{10}\choose1} + {{11}\choose0} = 144. There are a total of 2102^{10} possible flips of 1010 coins, making the probability 1441024=964\frac{144}{1024} = \frac{9}{64}. Thus, our solution is 9+64=0739 + 64 = \boxed{073}.

Solution 2 (Recursion)

Call the number of ways of flipping nn coins and not receiving any consecutive heads SnS_n. Notice that tails must be received in at least one of the first two flips.

If the first coin flipped is a T, then the remaining n1n-1 flips must fall under one of the configurations of Sn1S_{n-1}.

If the first coin flipped is a H, then the second coin must be a T. There are then Sn2S_{n-2} configurations.

Thus, Sn=Sn1+Sn2S_n = S_{n-1} + S_{n-2}. By counting, we can establish that S1=2S_1 = 2 and S2=3S_2 = 3. Therefore, S3=5, S4=8S_3 = 5,\ S_4 = 8, forming the Fibonacci sequence. Listing them out, we get 2,3,5,8,13,21,34,55,89,1442,3,5,8,13,21,34,55,89,144, and the 10th number is 144144. Putting this over 2102^{10} to find the probability, we get 964\frac{9}{64}. Our solution is 9+64=0739+64=\boxed{073}.

Solution 3

We can also split the problem into casework.

Case 1: 0 Heads

There is only one possibility.

Case 2: 1 Head

There are 10 possibilities.

Case 3: 2 Heads

There are 36 possibilities.

Case 4: 3 Heads

There are 56 possibilities.

Case 5: 4 Heads

There are 35 possibilities.

Case 6: 5 Heads

There are 6 possibilities.

We have 1+10+36+56+35+6=1441+10+36+56+35+6=144, and there are 10241024 possible outcomes, so the probability is 1441024=964\frac{144}{1024}=\frac{9}{64}, and the answer is 073\boxed{073}.

-RootThreeOverTwo\textbf{-RootThreeOverTwo}