1  Solutions to ZMO Round 2, 2002

1.   Try a few obvious examples to see if you can come up with a counterexample - (a,b)=(2,4), (2,7), (4,5), (2,10), (2,13), - they all give a positive answer, suggesting that in general: Yes, b + c is also divisible by 3. Now to prove it.
The secret is what's known as ``congruence modulo 3'': two integers are said to be congruent modulo 3 if they give the same remainder when divided by 3. There being only three possible remainders, this partitions the integers into three disjoint subsets, called the congruence classes with respect to 3.

Defining these sets more precisely:
C0 = {m Î \Z : m = 3p  for  some  p Î \Z};
C1 = {m Î \Z : m = 3p+1  for  some  p Î \Z};
C2 = {m Î \Z : m = 3p+2  for  some  p Î \Z}.
It is easy to see that the set of integers \Z is completely covered by the union of these three sets, and that they do not overlap.

Now, we are given that bc + 1 belongs to C0, which is obviously equivalent to saying bc belongs to C2. (If bc+1 leaves remainder 0 when divided by 3, bc will leave a remainder 2, and vice versa.) For their product to be in C2, it is soon observed that one of b and c must belong to C1 and the other to C2. Then, checking their sum, we have b + c = (3p + 1) + (3p¢+ 2) = 3(p+p¢) + 3 = 3q, where q=p+p¢+1 Î \Z, and thus b + c belongs to C0.

Before we go on to the next problem, it may be helpful and interesting to summarise the effects of adding or multiplying two numbers from two congruence classes. To see how it works, let x Î C0y Î C1z Î C1w Î C2. Then x=3p1y=3p2+1, z=3p3+1, w=3p4+2. Hence:

x+y=3p1+3p2+1=3(p1+p2)+1 Î C1. More generally, we write: C0+C1=C1.
y+z=3p2+1+3p3+1=3(p2+p3)+2 Î C2. More generally, we write: C1+C1=C2.
yz=(3p2+1)·(3p3+1)=9p2p3+ 3(p2+p3)+1 Î C1. More generally, we write: C1·C1=C1.
zw=(3p3+1)·(3p4+2)=9p3p4+ 6p3+3p4)+2 Î C2. More generally, we write: C1·C2=C2.
The last one is the one we used above - in addition to the observation that no other products will give C2. Can you see the quick way to find sums and products? Just add or multiply the subscript (i.e. the remainder) and express the result modulo 3 (remainder when divided by 3). The neatest way to write this is to use the notation invented by Gauss for congruence modulo 3:
a(mod 3)+b(mod 3)=(a+b)(mod 3),  a(mod 3)×b(mod 3)=(a·b)(mod 3).
Here is the full set of results:

C0+C0=C0
C0·C0=C0
C1+C1=C2
C1·C1=C1
C2+C2=C1
C2·C2=C1
C0+C1=C1
C0·C1=C0
C0+C2=C2
C0·C2=C0
C1+C2=C0
C1·C2=C2
2.   When you see two numbers in a bracket to some power, you think ``maybe expand by binomial theorem!'' Consider
an=(2+Ö3)n
=
n
å
k=0 
æ
ç
è
k
n
ö
÷
ø
2n-k(Ö3)k
=
2n+n2n-1Ö3+ n(n-1)
2
2n-2(Ö3)2+¼+(Ö3)n.
Now the question is talking about integers, and the only way we will get this to be integral, is to take only the even powers of Ö3. How can we eliminate the odd powers? By expanding bn=(2-Ö3)n and adding!
bn=(2-Ö3)n
=
n
å
k=0 
æ
ç
è
k
n
ö
÷
ø
2n-k(Ö3)k(-1)k
=
2n-n2n-1Ö3+ n(n-1)
2
2n-2(Ö3)2+¼+(-Ö3)n.
Hence an+bn=2(2n+[(n(n-1))/2]2n-23+¼)=2t,
where t is an integer. Now observe that an=(an+bn)-bn=2t-bn, and this ``remainder''bn is small: 0 < 2-Ö3 < 1 Þ 0 < bn < 1, and so we have [an]=[2t-bn]=2t-1, an odd number, as required.

3.   The first thing to try is to simplify the inequality, which suggests multiplying across by uvw and then (to get rid of root signs) squaring both sides, which will yield an equivalent inequality (since numbers are positive):
(vw+uw+uv)2
³
(uvw)2,
Þ  v2w2+u2w2+u2v2+2uvw(u+v+w)
³
u2v2w2,
Þ  (1+8y)(1+8z)+(1+8x)(1+8z)+(1+8x)(1+8y)+2uvw(u+v+w)
                                        ³ (1+8x)(1+8y)(1+8z).(It seems sensible to keep those nice symmetric terms in u,v,w rather than have ugly root signs messing things up.)Simplifying this, and using the given fact xyz=1, yields:4(x+y+z)+uvw(u+v+w) ³ 255.This is the inequality we set out to prove. There being two sums on the left, we are reminded of the AM-GM inequality - that the arithmetic mean of a set of numbers is equal to their geometric mean if they are all equal, otherwise is greater - which is what we want in our inequality. Thus 1(x+y+z) and 1(u+v+w) .Since xyz=1


Previous Next Home

Please contact the webmaster for any comments on these pages.