AIME 2007 II · 第 1 题
AIME 2007 II — Problem 1
题目详情
Problem
A mathematical organization is producing a set of commemorative license plates. Each plate contains a sequence of five characters chosen from the four letters in AIME and the four digits in 2007. No character may appear in a sequence more times than it appears among the four letters in AIME or the four digits in 2007. A set of plates in which each possible sequence appears exactly once contains N license plates. Find .
解析
Solution 1
There are 7 different characters that can be picked, with 0 being the only number that can be repeated twice.
- If appears 0 or 1 times amongst the sequence, there are sequences possible.
- If appears twice in the sequence, there are places to place the s. There are ways to place the remaining three characters. In total, that gives us .
Thus, , and .
Solution 2
Another approach is to first falsely assume that the zeros are distinguishable and then correct the over-counting.
We can name the zeros and . The first character has 8 choices - and . The second character has choices, the third has choices, the fourth has choices, and the fifth has choices. Multiplying them all together, there are arrangements where the zeros are distinguishable.
However, some cases with at most 2 zeros are over-counted. We can tackle this by going case by case for the number of zeros. When there are no zeros there will be no arrangements over-counted.
When there is exactly zero, all the cases are over-counted. This is because there will be another case with the exact same characters but the zero will be switched with the other zero. The number of ways to place the zero is , there are zeros to choose from, and the remaining spots have ways to place the non-zero characters. Thus, there are arrangements where there is exactly one zero. However, we need to remove half of these or from the total yielding in arrangements left.
Cases with two zeros would also have to be corrected as the zeros are interchangeable and you can switch the ordering of them. The number of ways to place is , the number of ways to place is , and the remaining places have ways to place the remaining characters. In total, there are arrangements with exactly two zeros. However, we need to remove half of these or from the total yielding in arrangements left.
The max number of zeros is two so we have gone through all the cases and removed the over-counted arrangements thus giving, and .
~ Logicalrhino65