Let be a set of integers taken from with the property that if and are elements of with , then is not a multiple of . What is the least possible value of an element in ?
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
A minimum of 2 or 3 bans too many numbers (all evens, or 6, 9, 12 plus half of 4/8 and 5/10), capping the set at 5; {4,5,6,7,9,11} works.
Solution
Test the candidates for the minimum from smallest to largest. ( is impossible since everything is a multiple of .)
Minimum . Then are excluded, leaving as candidates for the other five elements. But is a multiple of , so at most four of them can be used, giving a set of at most elements. Fails.
Minimum . Then are excluded (and are below the minimum), leaving . Within these, and , so at most one of and one of can be used: at most more elements, total . Fails.
Minimum . Exclude and ; choose from . Take . Check every pair: are not multiples of or ; and are not multiples of or ; is not a multiple of . Valid.
The answer is .
Why this works
A small minimum is expensive: every multiple of it is banned, and the survivors still have divisibility conflicts among themselves. The efficient argument is a capacity count: after banning the multiples of the minimum, group the remaining candidates into "divisor chains" such as or , from which at most one element can be picked, and see whether five elements are still available. When they are not, move the minimum up and try again, ending with an explicit set.
The trap
Only checking that the chosen set avoids multiples of the minimum, forgetting pairs like 3 and 9 or 5 and 10 among the other elements.
Common mistakes
- Only checking that the chosen set avoids multiples of the minimum, forgetting pairs like 3 and 9 or 5 and 10 among the other elements.
- Stopping after showing fails and guessing , without carrying out the same capacity check for .
Techniques
Split into exhaustive cases and handle each · Consider the largest/smallest element or boundary case