players are playing a game of Chain Reaction on a grid. They start with an empty grid, and then when their turn comes they place on orb on the grid.
Here are two challenging problems:
1) What is the maximum number of moves the game can last?
2) What is the minimum number of moves the game can last?
Answer in terms of and .
Details and assumptions
I haven't solved it, so I don't know the solution. I don't even know if a (nice) solution exists, however it seems like an interesting problem to me and I hope you will like it too. Feel free to use any method(s) to get the answer - pen and paper, marker and whiteboard, programming, Wolfram|Alpha or anything else that you like!
Post below any ideas / strategies that come to your mind that could be used to maximize / minimize the number of moves.
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
The minimum number of moves depends heavily on the starting configuration. As an example, for l=2,min{m,n}≥2, and Player 1 has only one orb on a corner, we can play the following:
However, the general approach is that; get cells of a player to almost reach critical mass (just to aid when they explode), and chain as many as possible together, so that they can be eliminated quickly.
The maximum number of moves is actually reached when all cells have one less than critical mass (so that they don't explode yet), and then one more move is played, triggering an infinite chain reaction.
Log in to reply
Nice observation! To get as many moves as possible, all cells must have one less than critical mass. But then the question arises for what condition on l,m,n can that state be reached? If that state can not be reached, that what is the next best option?
Note that the we are starting on an empty grid i.e. there is only one starting configuration. For l=2, the minimum number of moves is less than 5, it is in fact 3.
I think maximum no of moves will be independent of no of players since we have to make all orbs reach Critical mass so I'm getting the answer: 3mn-2m-2n not calculated min moves till now.
PS: This will be true when no of players is a factor of total squares, otherwise it's very difficult
Log in to reply
Yes, you are correct; in order to have maximum moves, we must try to make all orbs reach critical mass. Can you prove that if no. of players l is a factor of total number of squares m×n, then it is always possible to make all orbs reach critical mass? Also is it true that if l is not a factor of m×n, then it is always impossible to make all orbs reach critical mass?