From the set { 1 , 2 , 3 , . . . , n }, 1 0 numbers are removed such that there is no Arithmetic Progression of length 1 1 among the numbers left in the set.
Find the smallest n such that no matter which 1 0 numbers are removed, there always is one Arithmetic Progression of length 1 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.
what will be n when d is prime while d+1 isn't???
i can see the logic in your proof, but can you tell me how did you go about conjecturing the answer is n = d^2 + d + 1? what clues motivated you to making that conjecture?
Interestingly, this is exactly the same line of reasoning as mine. I wonder if there are other approaches.
for ap of length 11 among natural numbers,let take first 110 numbers ,so 11,22 upto 110 total 10 numbers removed and if we just add 1 ,an ap of length 11 is formed
The problem is you need to add another 11 numbers after 110 for an AP of 11 to be formed, since 110 is removed, so isn't the answer 121?
Log in to reply
Keep in mind that 1,12,23,...,111 has length 11.
That just shows that 111 is aa lower bound. The trickier part is showing that no matter what 10 numbers you remover from {1, 2, ..., 111} there will always exist an AP of length 10. Patrick Corn in his solution achieves this correctly!
I don' like the solution but the solution is somewhat like this: Split the set from 1 to n in parts of 1 1 and then remove elements which are distinct modulo 1 1 from each set. For n to be least consider the common difference to be the least i.e 1 so that the number of elements in the set is maximum(Though not required); So from { 1 , 2 , . . . , 1 1 } remove (say 1) and then from { 1 2 , 1 3 , . . . , 2 3 } remove 12(say) and so on and finally remove 110 { 9 9 , , . . . , 1 1 0 } (Look at the right shift of the index of the number you remove from each set). Since 10 numbers have been already removed and there is no more AP in the set { 1 , 2 , . . . , 1 1 0 } (Prove it). Adding one number to the set further makes an AP. To be conclusive, since we have removed one element each of type i m o d 1 1 with distinct i each time so strictly speaking, now we are left with only 10 elements of each type in the set { 1 , 2 , . . . , 1 1 0 } . Just add one number and we've formed an A.P.
Problem Loading...
Note Loading...
Set Loading...
Replace 1 0 by d and 1 1 by d + 1 . If d + 1 is prime, the answer is n = d 2 + d + 1 .
Proof: Here is the key fact: any arithmetic progression of length d + 1 must either contain an element divisible by d + 1 or have difference divisible by d + 1 . (Note that this is only true because d + 1 is prime! Proof left as an exercise.)
So consider the subset of { 1 , 2 , … , n } obtained by removing the multiples of d + 1 , and suppose that n < d 2 + d + 1 . Then there can't be an AP of length d + 1 whose difference is divisible by d + 1 , since the difference between its first and last term would be at least d 2 + d . And we've picked this subset so that it has no multiples of d + 1 in it. So it cannot have an AP of length d + 1 . Also, there are at most d multiples of d + 1 in { 1 , 2 , … , n } . So the conclusion is that if n < d 2 + d + 1 , we can remove the mutiples of d + 1 (plus whatever other numbers you want to get the total up to d ) and avoid all APs of length d + 1 .
On the other hand, if n = d 2 + d + 1 , and we want to avoid all APs of length d + 1 , then we must remove at least one of the elements congruent to 1 mod d + 1 , in order to get rid of the AP 1 , d + 2 , … , d 2 + d + 1 . Suppose we remove k ( d + 1 ) + 1 . Then we have to remove at least k elements less than this to avoid an AP of difference 1 in the subset, and we have to remove at least d − k elements greater than this in order to avoid an AP of difference 1 from among the remaining ( d − k ) ( d + 1 ) bigger elements; but that is a total of at least d + 1 elements we'd have to remove, which is not allowed. So there is always an AP of length d + 1 if n = d 2 + d + 1 ; hence this is the answer.