Let 0 < a 1 < a 2 < … < a 1 0 0 ≤ 2 0 0 be a set of 100 integers, such that the least common multiple of any two of them is strictly greater than 200. What is the smallest possible value of a 1 ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Another way of looking at the solution. You have the optimal set of 100 numbers {101,102,103,....200}. If you want to add a number smaller than 101, then you must throw out its multiples from the set. For example, you can add 97 and then throw out 184; or, you can add 89 and throw out 178. The numbers that you can add to the set can logically be only a prime number. This way, the least prime number that you can add becomes 67; you remove out 134 from the set. The next small number is 61, but that would require you to remove two nos from the set 132 and 183 - this reduces the set. So, the answer is 67. Anyway, good problem!
First, I included all the numbers from 101 to 200. No two of these numbers will have an LCM less than or equal to 200.
Now, we already have 100 numbers. But, we are looking for the smallest possible number. If, we include a number less than 101, we have to exclude the multiples of that number from our existing set, to keep the constraint under check.
Also, we have to take 100 numbers. So, if we include a number, we must take that number such that there is just one multiple of it in the existing set.
Let us say, we take 'a'.
'a' is the 1st multiple of 'a'
'2a' is the 2nd multiple of 'a'
So, we must include an 'a' such that only 2 × a gets excluded, not 3 × a
In, other words, 3 × a > 200 or, a > 66.66
The minimum value satisfying = 6 7
Easy to understand Thanks for the answer
I just assumed that the possible least common multiple above 200 is 201 and I thought that smaller divisors produces larger quotients. Then I came up with 3, so i divide 201 with 3 and I got 67.
(just guessed)
Problem Loading...
Note Loading...
Set Loading...
We claim that the answer is 67. Indeed, let us first show that 67 is a viable solution. Construct the sequence of integers:
6 7 , 1 0 1 , 1 0 2 , 1 0 3 , … , 1 3 4 ^ , … , 2 0 0
where the 'hat' symbol means 134 is missing. This sequence works since if we pick any two integers 1 0 1 ≤ m < n ≤ 2 0 0 , then n is not a multiple of m so their LCM is at least 2 n > 2 0 0 . Also, if we pick 67 and another integer m , then their LCM must be 6 7 m since m is not a multiple of 67.
On the other hand, let us show that the smallest integer must be at least 67. Indeed, we partition the set of integers 1 , 2 , … , 2 0 0 as a disjoint union of sets
A k : = { n : n = ( 2 k − 1 ) 2 j and 1 ≤ n ≤ 2 0 0 } ,
so that:
A 1 A 2 A 1 0 0 = { 1 , 2 , 4 , 8 , … , 1 2 8 } , = { 3 , 6 , 1 2 , 2 4 , … , 1 9 2 } , … = { 1 9 9 }
Since the LCM of any two a i 's exceeds 200, no a i is a multiple of another a j . This means, in particular, that we can only have at most one element of the sequence from each A k . But there are exactly 100 elements! So we have to pick one from each A k , i.e. the sequence comprises of a k = ( 2 k − 1 ) 2 j k , albeit in a non-sorted order. Now, consider the two elements:
a k = ( 2 k − 1 ) 2 j k , a 3 k − 1 = 3 ( 2 k − 1 ) 2 j 3 k − 1 .
If j k ≤ j 3 k − 1 then a 3 k − 1 is a multiple of a k , which is a contradiction. Hence j k > j 3 k − 1 , and the LCM of a k and a 3 k − 1 is 3 ( 2 k − 1 ) 2 j k . Since this must be at least 201, we have:
a k = ( 2 k − 1 ) 2 j k ≥ 3 2 0 1 = 6 7 .