Since everyone is posting challenges lately, might as well post one that I've heard:
You, your friend, and the Devil play a game. You and the Devil are in the room with a chess board with tokens on it, one on each square. Meanwhile, your friend is outside of the room. The token can either be on an up position or a down position, and the difference in position is distinguishable to the eye. The Devil mixes up the positions (up or down) of the tokens on the board and chooses one of the squares and calls it the magic square. Next, you may choose one token on a square and flip its position. Then, your friend comes in and must guess what the magic square was by looking on the squares on the board. Show that there is a winning strategy such that your friend can always know what square the magic square is.
Details
You MAY flip a token. As in, you are not forced to flip a token; you may choose to not flip a token.
You can't just tell your friend what square it is. Or point to it. Or text him it. Or... you get the point.
Your friend knows the strategy as well (you tell him beforehand).
If you don't get it right, the Devil takes your soul. High stakes.
There are many ways to approach this problem. Some are more reproducible (i.e. real humans could more reasonable do it) than others. There do exist solutions that humans can reproduce.
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
Well this thread has been going for a while and I guess I'll post my favorite solution (credit to Garyados Oak)
Make 6 groups, each corresponding to specific region of the chessboard such that every square has a unique way to report it in terms of being in a group and not in a group. Namely:
Group 1: The top half of the board
Group 2: The left half of the board
Group 3: Rows A, B, E, F
Group 4: Columns 1, 2, 5, 6
Group 5: Rows A, C, E, G
Group 6: Columns 1, 3, 5, 7
Where the rows top to bottom are A, B, C.. and the columns left to right read 1, 2, 3..
Using this, we can communicate any square in a unique manner by saying what groups it is in and what groups it isn't in. For example, take B4:
It is in group 1, 2, and 3, but it is not in group 4, 5, and 6.
Now, the question is how do you communicate what groups it is or isn't in to your friend? This will be done by the number of up-position tokens there are in a group. If that number is odd, then the magic square is in that group. If it is even, then the magic square is not in that group.
Thus, given any configuration of the board, we need to be able to flip one coin and change the groups that are even and need to be odd and the groups that are odd and need to be even while leaving the groups that are correct alone. This can be accomplished by flipping the token on the square that is in the groups which need to be changed, but not in the groups that don't need to be changed. As an explicit example:
Say the magic square is B4. So Groups 1, 2, 3 need to be odd and groups 4, 5, 6 need to be even. The devil gives you a configuration where Groups 1 and 4 are odd and Groups 2, 3, 5, 6 are even. Then you'd find the square that is in group 2, 3, and 4, but not in group 1, 5, and 6, which is F2. Flipping the token in F2 will case group 2 and 3 to now be odd and 4 to be even while leaving the other groups alone.
Thus, your friend comes in, examines the groups for their parity, and can then figure out which square is the magic square.
Log in to reply
Now that I think about it, if you number the squares from 0 to 63 in the right way, then this becomes equivalent to Mitya's solution here.
Best strategy I have so far:
Number the squares 0 through 63. If the magic square is M, then try to flip a token such that the sum of the numbers of the up-token squares is M(mod64).
If the current sum is N(mod64), then you either need to flip square N−M(mod64) from up to down, or flip square M−N(mod64) from down to up. Then, the sum of the numbers of the up-token squares will be M(mod64).
Then, your friend just needs to sum up the numbers of all the squares with up-tokens, take the result (mod64), and guess that square.
This will fail if square N−M(mod64) already has a down-token AND square M−N(mod64) already has an up-token. So, you still have like a 75ish% chance.
Now can we tweak this so we guess the correct square 100% of the time?
Log in to reply
OK, so here is my attempt to tweak your observations into a strategy. I am going to use the fact that 64 is a power of 2, which is perhaps not so good (this wouldn't apply to a 9-by-9 chessboard). If this solution is correct, I would say it is borderline reproducible: a human being with good memory could use it in practice.
Write V for the set of all possible states of the board, i.e., the set of sequences a1,a2,…,a64 where each ai is either 0 or 1. Let W be a set with 64 elements; we will choose W later. The strategy you need to win this game can be described as follows. You want to find a map f:V→W such that for any state of the board v∈V and for any w∈W, there exists one flip of a token that transforms v into a state v′∈V with f(v′)=w.
We can encode token flips in the following way. V has a natural addition operation, namely, componentwise addition modulo 2. If you want to be more formal, you can say that V with this operation is an abelian group (a product of 64 copies of Z/2Z), or alternatively a 64-dimensional vector space over a field with 2 elements. Regardless of the viewpoint, let ei∈V denote the sequence that has 1 in the i-th place and 0 everywhere else. Each element of V can be written as a sum of a bunch of these ei (again, from the linear algebra perspective, the ei form a basis of V).
Flipping token number i corresponds to adding ei to your state v∈V. Hence f needs to have this property: for each v∈V and each w∈W, there exists 1≤i≤64 with f(v+ei)=w. Note that because W has 64 elements, this is the same as requiring f(v+ei) to be pairwise distinct for all i (if v is fixed). This, in turn, is equivalent to the following property for any v∈V and any i=j, we need f(v+ei+ej)=f(v).
Now we finally use the fact that 64=26. We can choose W to also be an abelian group, namely, the product of 6 copies of Z/2Z (or a 6-dimensional vector space over a field with two elements). We will look for an additive (or linear) map f:V→W, i.e., a map satisfying f(v+v′)=f(v)+f(v′). Such a map is uniquely determined by the values f(ei), which can be chosen arbitrarily -- because every w∈W satisfies w+w=0 (otherwise this whole construction would break down). There are 64 values of i and 64 elements of W, so we can choose the f(ei) to be all the distinct elements of W. Then, by construction, f(ei+ej)=0 for all i=j, which means that f(v+ei+ej)=f(v) for i=j and the proof is complete (if I didn't make any mistakes).
Log in to reply
Feel free to solve it for an 8x8 case. There are solutions for nxn chessboards but it involves memorizing 2n states of the board and is impossible to reproduce it.
Possibly. I haven't heard of a solution using this but the great part about this problem is there are many solutions.
Log in to reply
This observation might help anyone who is good at graph theory solve this problem:
Take a 64-dimensional hypercube with vertices (±1,…,±1). Each vertex corresponds to one of the 264 possible initial states of the board. Each edge corresponds to a move that you can make by flipping exactly one token.
Color the vertices with colors 0 through 63 such that for any vertex, the 64 adjacent vertices are all different colors. Make sure you and your friend color the graph the same way.
When you are in the room, start at the vertex corresponding to the initial state of the board. Then, find the adjacent vertex whose color number is equal to the magic square's number. Finally, flip the appropriate token such that the final state of the board corresponds to this adjacent vertex. .
When your friend is in the room, he finds the vertex corresponding to the final state of the board and guesses the magic square whose number is equal to the color of that vertex.
This works iff the 64-dimensional hypercube can be colored in that manner. Perhaps there is a proof by induction to show that it can be colored accordingly.
Log in to reply
Log in to reply
You can number the squares on the chessboard as 0, 1, 2, ..., 63. Encode all these numbers in base 2 using exactly 6 digits, so for example, 0 corresponds to 000000, 1 corresponds to 000001, ..., 63 corresponds to 111111. You then agree on the following strategy. When your friend returns to the room and sees the state of the chessboard, he will add up all the numbers corresponding to the squares on which the token is flipped up, but the main point is that he will perform the addition in binary without carrying. So for example, if the tokens are up only on squares 5 and 63, your friend will compute 000101 + 111111 = 111010 (and then convert this back into a decimal between 0 and 63). This sum will represent the position of the square that the Devil chose as the magic square.
The only thing that's needed is to make sure that from any starting position, you can flip one token to reach a position that has the correct sum. But this is actually pretty clear if you think about how addition without carrying works.
Log in to reply
Log in to reply
For people who want to find other solutions, the fact that 64=26 is not coincidental.
Log in to reply
Log in to reply
Don't do the addition in mod 64, use XOR. That should solve the problem, as addition and subtraction become the same operation so the way the devil flips each square is irrelevant.
Trick question. I have no soul.
Oh! I've already written a whole paper about this problem (For IB Extended Essay), and I did exactly what you are saying. But I didn't even knew this problem had a name and a Wiki on Brilliant!! Anyways, for someone interested you might want to read the paper here: https://drive.google.com/file/d/1XxeDGOKNlYQ934l8NBtcYr6dwhFeSs7R/view?usp=sharing (if a shared it correctly) Notice that the formulation that I use and the solution is exactly the same as @Mitya Boyarchenko here, but I also point out that "savage" non-linear solutions or strategies (so not reproducible for persons to use) do exist as it is mentioned at the beginning of this article.
Can I develop a strategy with my friend before the devil mixes up the tokens and chooses his "magic" one?
Log in to reply
Yes of course :)
Log in to reply
Hmm, thanks. I had something in mind but I appeared to be wrong, sadly :( No sleep for me I guess.
Log in to reply
I was thinking in encoding a number 0-63 in binary somehow.
Log in to reply
You copied my name O_O
Log in to reply
My surname is leong
Does this mean your friend does not know weather a token is up or down?
Log in to reply
He can see the whole board, so he can see it.
Here is what I thought of: In 64 squares we can get a possible 2^64 combinations of binary digits. We can divide it by 64 and get 2^58 combinations for each column. Now we can convert any given combination to any other combination just by adding one. For example, In a 2*2 matrix, possible outcomes are 2^4. we can divide it by 4 and get 2^2 outcomes for each column. Each column will be like this, 1 2 3 4 0000 0010 0100 1000 0001 0011 0101 1001 1111 1101 1011 0111 1110 1100 1010 0110 Now any possible setup can be converted to another by just changing one bit.
Similarly we can do it for 64 squares.!!