Processing math: 100%

Thursday, October 8, 2015

Four Number Game II [Solution]

This was the puzzle:

You start with n integers a1,a2,,an and in one step you perform the following transformation

(a1,a2,,an)(|a1a2|,|a2a3|,,|an1an|,|ana1|)

(|x|= absolute value of x)

You keep performing this operation till all the numbers become zero.

Find all n>1 (with proof), such that no matter which integers you start with, the numbers eventually become zero.

Solution


 The answer is the game terminates for every starting tuple of integers if and only if n is a power of 2.

The proof is based on the following observations (note, you might have to fill in a few details):

Lemma 1)

It is enough to consider the game modulo 2, i.e, we play the game as

(a1,a2,,an)
(|a1a2|mod2,|a2a3|mod2,,|an1an|mod2,|ana1|mod2)

which is equivalent to the game, working in the field F2 (where each ai is 0 or 1 and 1+1=0) as

(a1,a2,,an)(a1+a2,a2+a3,,an1+an,an+a1)


Lemma 2)

Looking at the tuples as vectors over F2, if the game terminates for u and v, then the game terminates for u+v.

Now the game is basically multiply a vector v by a fixed matrix A, and the game terminates if Akv=0 for some k.

Lemma 3)

If the game terminates for e=(1,0,,0), then the game terminates for all vectors in {0,1}n. This is because we can cyclic shift e to get that the game terminates for (0,1,,0) etc, and add as appropriate (by Lemma 2).

Lemma 4)

 If the game terminates for e=(1,0,,0), it does so in no more than n steps!

This we can see by considering the starting state v, and the subsequent states Av,A2v,,Anv.

Now suppose we have that Amv0 for all m<K, and AKv=0.

The claim is that v,Av,A2v,,AK1v are all linearly independent vectors.

If they were linearly dependent, then we have that

As1v+As2v+=0

with s1<s2<K

Now just multiply the above with AK1s1 to get that AK1v=0.

Since the K vectors are linearly independent, we have that Kn.

Main proposition)

The game played on (1,0,,0) gives us the rows of the Pascal's triangle on each step, and we are looking for all numbers to become even within n steps.

We can now use Lucas' theorem to show that the only n for which termination occurs is powers of 2.

More reading: https://en.wikipedia.org/wiki/Ducci_sequence

No comments:

Post a Comment