返回题库

AIME 2002 I · 第 1 题

AIME 2002 I — Problem 1

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Many states use a sequence of three letters followed by a sequence of three digits as their standard license-plate pattern. Given that each three-letter three-digit arrangement is equally likely, the probability that such a license plate will contain at least one palindrome (a three-letter arrangement or a three-digit arrangement that reads the same left-to-right as it does right-to-left) is mn\dfrac{m}{n}, where mm and nn are relatively prime positive integers. Find m+n.m+n.

解析

Solution 1

Consider the three-digit arrangement, aba\overline{aba}. There are 1010 choices for aa and 1010 choices for bb (since it is possible for a=ba=b), and so the probability of picking the palindrome is 10×10103=110\frac{10 \times 10}{10^3} = \frac 1{10}. Similarly, there is a 126\frac 1{26} probability of picking the three-letter palindrome.

By the Principle of Inclusion-Exclusion, the total probability is

126+1101260=35260=7527+52=59\frac{1}{26}+\frac{1}{10}-\frac{1}{260}=\frac{35}{260}=\frac{7}{52}\quad\Longrightarrow\quad7+52=\boxed{59}

Solution 2

Using complementary counting, we count all of the license plates that do not have the desired property. To not be a palindrome, the first and third characters of each string must be different. Therefore, there are 1010910\cdot 10\cdot 9 three-digit non-palindromes, and there are 26262526\cdot 26\cdot 25 three-letter non-palindromes. As there are 10326310^3\cdot 26^3 total three-letter three-digit arrangements, the probability that a license plate does not have the desired property is 10109262625103263=4552\frac{10\cdot 10\cdot 9\cdot 26\cdot 26\cdot 25}{10^3\cdot 26^3}=\frac{45}{52}. We subtract this from 1 to get 14552=7521-\frac{45}{52}=\frac{7}{52} as our probability. Therefore, our answer is 7+52=597+52=\boxed{59}.

~minor edit by Yiyj1

Solution 3

Note that we can pick the first and second letters/numbers freely with one choice left for the last letter/number for there to be a palindrome. Thus, the probability of no palindrome is

2526910=4552\frac{25}{26}\cdot \frac{9}{10}=\frac{45}{52} thus we have 14552=7521-\frac{45}{52}=\frac{7}{52} so our answer is 7+52=59.7+52 = \boxed{59}.

~Dhillonr25

Solution 4

We can find the probability of getting a letter and number palindrome through Solution One, which gives us 126,\frac{1}{26}, and 110,\frac{1}{10}, respectively. Then, we can use casework to solve the question. We begin by creating the cases:

\begin{align*} \bullet\ \text{Case 1: The license plate includes only a letter palindrome, and no number palindrome} \\ \bullet\ \text{Case 2: The license plate includes only a number palindrome, and no letter palindrome} \\ \bullet\ \text{Case 3: The license plate includes both a number palindrome, and a letter palindrome} \end{align*}

We know that the complement of these probabilities gives us the probability that the numbers and letters are NOT palindromes, so we can use that in our cases to get:

\begin{align} \frac{1}{26} \cdot \frac{9}{10} &= \frac{9}{260} & \text{Case 1}\\ \frac{25}{26} \cdot \frac{1}{10} &= \frac{25}{260} & \text{Case 2}\\ \frac{1}{26} \cdot \frac{1}{10} &= \frac{1}{260} & \text{Case 3} \end{align}

Finally, we can add them all together to get: 9+25+1260=35260=752=mn.\frac{9 + 25 + 1}{260} = \frac{35}{260} = \frac{7}{52} = \frac{m}{n}. Thus, we have m+n=059.m + n = \boxed{059}.

~ Cheetahboy93

Video Solution by OmegaLearn

https://youtu.be/jRZQUv4hY_k?t=98

~ pi_is_3.14