My teacher was writing a problem on the board -
"Prove that with twelve distinct primes, there will always be six primes a 1 , a 2 , a 3 , a 4 , a 5 , a 6 such that ( a 1 − a 2 ) ( a 3 + a 4 ) ( a 5 − a 6 ) is divisible by □ ." -
There was an emergency meeting that he had to go then. The teacher forgot about finishing writing the problem the next lesson.
What was the maximum possible number that needed to be put in the box?
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.
That is so detailed and precised. But first, you misspelled "pretty" at the end. And second, there will be at least 11 primes, (because 2 is the only even prime) then in the worst scenario, you have chosen 4 primes that is larger than 2. You will still be left with at least 7 primes. Chose 2 random ones, and their sum is even.
This is @Alapan Das 's solution, I am not the one to think of this solution, just post the solution here:
"Primes can have 1,3,7,9, as there last digits except 2and 5.Now using PHP we can say there are minimum three primes with same last term.So,if we take 6 primes then out of them we can subtract those primes with same last term.So,the given term is divisible by 100.Now as there are 12 primes, 11are definitely odd.Then the given term can divisible by 8.Thus te term is divisible by lcm(100,8)=200.Now we know any prime except 2,3 can be expressed as 6K ±1.So,we can easily understand logically that the given term is divisible by 72 .So its divisible by LCM(72,200)=1800."
I am not so familiar with mobile phones.Thank you for these share by you for me.
Log in to reply
Have you chosen "View mobile site" in your settings?
It is not a necessity though. But if you are working on a mobile phone, you should choose "View mobile site" for a more defined look. And it doesn't create eye strains.
How does it follow that the term is divisible by 72?
Log in to reply
Any prime except 2 and 3 can be written as 6n±1.So,if we think about 12 primes including 2 and 3,the other 10 can be written as 6n±1.Now,among them at least 5 are 6n+1 or 6n-1.If we take A1 and A2 ,and likely A5and A6 of same fashion(same fashion means both 6n+1or both 6n-1).Then its obviously id divisible by6x6=36.Now,for the worst case when all are of the same fashion then A3+A4 are divisible by 2 not 6.So,obviously the given expression is always divisible by 6x6x2=72.
Log in to reply
But we already assumed that A1 and A2, as well as A5 and A6 have the same last digit. It's not at all obvious to me that it's always possible to select them so as to both have the same last digit and have the same remainder mod 6.
There are 12 prime numbers, so there will be at least 2, whose sum will be divisible by 11. In the worst case, there are 2 and 13 in this list, the product will be divisible by only 4 instead of 8. From 12 numbers, including 2 and 13, there will be at least 2 pair of numbers, not including 2 and 13, that can have the same modulo of 7. That makes the product can be divided by 7 * 7 * 4 * 11 = 2156 >1800. However, I think the highest should be 16500 :/
Log in to reply
The prove has to be applied to every selection of 12 distinct primes, you don't get to choose which 12 primes are yours.
Log in to reply
Tks, I think mine is wrong, didnt pay attention to the sum :)
Give an example for those 12 primes
Problem Loading...
Note Loading...
Set Loading...
Let's think of a simpler version of this problem where the expression given is only ( a 1 − a 2 ) , and we want to find the largest n such that we can guarantee there is some a 1 and some a 2 within the 1 2 given primes such that n ∣ ( a 1 − a 2 ) . Let's also assume none of the given primes are factors of n , and we'll take care of this assumption later.
There are only ϕ ( n ) possible values for a 1 ( m o d n ) , because a 1 is prime and we assumed it isn't a factor of n . Therefore, if 1 2 > ϕ ( n ) , we can apply the pigeonhole principle and say that, within the given numbers, there are at least two congruent modulo n , and, thus, we can always find two of these numbers such that n ∣ ( a 1 − a 2 ) . To maximize n , we need to find the largest n such that ϕ ( n ) < 1 2 . You can easily check that it's 3 0 , with ϕ ( 3 0 ) = 8 . This means, from our assumption, that, as they're factors none of 2 , 3 , and 5 can be among the given primes.
To solve the full problem, let's keep the assumption about the primes and deal with the special cases later. We know that we can guarantee ( a 1 − a 2 ) is divisible by 3 0 . This leaves us with 1 0 primes, but still 1 0 > ϕ ( 3 0 ) , so we can guarantee ( a 5 − a 6 ) is divisible by 3 0 as well. Now we have 8 primes left, but it turns out the only thing that can be said is that the sum can be made divisible by 2 . So the answer is 3 0 ⋅ 3 0 ⋅ 2 = 1 8 0 0 .
It is important to see that all that has been said still works even if only 1 1 primes were given, we would still be able to apply the pigeonhole principle in the required places. This means we won't have to deal with the special cases where only one of the factors of 3 0 are present, we can just ignore it and pretend there are only 1 1 primes.
Now lets cover the special cases, splitting them up in two:
The only thing left to explain is that the only thing you can say about the sum ( a 3 + a 4 ) is that it's even. I'm pretty sure this is true, but I haven't had time to explore it further, I'd highly apreciate if anyone wants to contribute with this solution.