AIME 2024 II · 第 2 题
AIME 2024 II — Problem 2
题目详情
Problem
A list of positive integers has the following properties:
The sum of the items in the list is .
The unique mode of the list is .
The median of the list is a positive integer that does not appear in the list itself.
Find the sum of the squares of all the items in the list.
Quick note
For those who don't understand why we say the list must have 4 elements.
Suppose there are elements in the set. Then, the remaining elements must sum to 12. So, say instead there were elements in the set. Then, we need four integers that add to 12. However, the unique mode is 9, which appears twice. Thus, every other number must appear once. The smallest sum of four distinct numbers is . To obtain 12, we sub out 4 for 6. However, now we have a problem! The median of the set isn't an integer. Thus, 6 elements cannot work.
Now, say there are elements. Like in the previous case, the unique mode is 9, which appears twice. Along with that fact, each number must be distinct. The smallest sum of numbers is 21, which is not even close to 12. Thus, we can conclude that as , the distinct sum ( means much larger). Thus, the case of doesn't work, and all cases of don't work.
So, we have either , in which we know , and therefore must be 4, so there must be 4 elements in the set .
~Pinotation
解析
Solution 1
The third condition implies that the list's size must be an even number, as if it were an odd number, the median of the list would surely appear in the list itself.
Therefore, we can casework on what even numbers work.
Say the size is 2. Clearly, this doesn't work as the only list would be , which doesn't satisfy condition 1.
If the size is 4, then we can have two s, and a remaining sum of . Since the other two values in the list must be distinct, and their sum must equal , we have that the two numbers are in the form and . Note that we cannot have both values greater than , and we cannot have only one value greater than , because this would make the median , which violates condition 3. Since the median of the list is a positive integer, this means that the greater of and must be an odd number. The only valid solution to this is . Thus, our answer is . ~akliu
Solution 2
If there were an odd number of elements, the median would be in the set. Thus, we start with 4 elements. For 9 to be the mode, there must be 2 9s. For 9 to not be the median, either both numbers are greater than 9, or both numbers are less than 9. Clearly, both numbers must be less. From here, the numbers are clearly , and we add their squares to get -westwoodmonster
Solution 3
We can tell that the amount of integers in the list is an even number, because the median of the list doesn't appear in the list. The mode or the most frequent number in the list is 9, so there is more than one 9. We start with three 9's, because they will be easy to eliminate the cases. The list should look like
or
in which both cases are impossible because the median is 9, which shows up in the list. The next case is 2 9's which looks like:
or
Where Because both elements of and cannot be greater than 9, the set looks like
and the only number that satisfy this case is 4,8 and 5,7 not 6 and 6 because 9 is the unique mode. it also states the median is an integer, so the pair is 5 and 7 and the set looks like
and
-Multpi12
Solution 4 (complete reasoning)
Since the median is not in the list, there must not be an odd number of elements. Suppose the list has two elements. To meet the mode condition, both must equal , but this does not satisfy the other conditions.
Next, suppose the list has six elements. If there were at least three s, then the other elements would sum to at most . Since the elements are positive integers, this can only be achieved with the set , which violates the unique mode condition. Therefore, there must be exactly two s, and the other four elements must be distinct to satisfy the unique mode condition. Two sets of four unique positive integers add to : and . Neither can act as the remaining four elements since both possibilities violate the constraint that the median is an integer.
Next, suppose the list had at least eight elements. For the sake of contradiction, suppose the third-largest element was at least . Then, since every element is a positive integer, the minimum sum would be . So, to satisfy the unique mode condition, there must be exactly two s, and the other elements must be distinct. But then the minimum sum is , so the sum constraint can never be satisfied. From these deductions, we conclude that the list has exactly four elements.
Note that no element can appear three times in the list, or else the middle-two-largest elements would be equal, violating the condition that the median is not in the list. Therefore, to satisfy the unique mode condition, the list contains two s and two other distinct integers that add to . Five sets of two unique positive integers add to : , , , , and . The first four options violate the median condition (either they make the median one of the list elements, or they make the median a non-integer). Thus, the set must be , and the sum of the squares of these elements is .
-ltihoen
Video Solution
https://youtu.be/idpYkjdHZO0
~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)