Long-Jumping Checkers

A game is played on a standard 8 × 8 8\times 8 checkerboard. Checkers are placed on one half of the checkerboard. Label the squares like an array, with squares ( i , j ) (i,j) for 1 i , j 8 1\le i,j\le 8 Checkers are then moved with the following rule:

Choose a checker at square ( i , j ) (i,j) . Pick another square ( m , n ) (m,n) ; then, the checker can move to the spot ( 3 m 2 i , 3 n 2 j ) (3m-2i,3n-2j) if it is vacant.

Let the number of possible checker arrangements be N × 1 0 M N\times 10^M , where 10 ∤ N 10\not\mid N and M M is a non-negative integer. Find the last three digits of N + M N+M .

Details and Assumptions

The starting position counts as one arrangement. Move one checker, and it's another arrangement. Your job is to find the total number of arrangements with any number of moves.

Rotations and reflections count as different arrangements.

You may use a calculator to calculate the value of N × 1 0 M N\times 10^M .

The starting position has checkers in squares ( i , j ) (i,j) for 1 i 8 1\le i \le 8 and 1 j 4 1\le j\le 4 .


The answer is 348.

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.

1 solution

Daniel Liu
Jun 5, 2014

Note that after the operation of ( m , n ) (m,n) on ( i , j ) (i,j) , the value of i ( m o d 3 ) i\pmod{3} stays the same. Ditto for j ( m o d 3 ) j\pmod{3} : 3 m 2 i 2 i i ( m o d 3 ) 3m-2i\equiv -2i\equiv i\pmod{3} 3 n 2 j 2 j j ( m o d 3 ) 3n-2j\equiv -2j\equiv j\pmod{3}

Thus, a checker ( i , j ) (i,j) can only move to spaces ( i 1 , j 1 ) (i_1,j_1) where i 1 i ( m o d 3 ) i_1\equiv i\pmod{3} and j 1 j ( m o d 3 ) j_1\equiv j\pmod{3} .

In the diagram below, each different shade of grey corresponds to a different value of ( i , j ) ( m o d 3 ) (i,j)\pmod{3} . Identical colors means a checker of that color can move to any other spot of the same color.

Imgur Imgur

It's clear now that:

( 1 , 1 ) ( m o d 3 ) 9 different spaces (1,1)\pmod{3}\implies \text{9 different spaces} ( 1 , 2 ) ( m o d 3 ) 9 different spaces (1,2)\pmod{3}\implies \text{9 different spaces} ( 1 , 3 ) ( m o d 3 ) 6 different spaces (1,3)\pmod{3}\implies \text{6 different spaces} ( 2 , 1 ) ( m o d 3 ) 9 different spaces (2,1)\pmod{3}\implies \text{9 different spaces} ( 2 , 2 ) ( m o d 3 ) 9 different spaces (2,2)\pmod{3}\implies \text{9 different spaces} ( 2 , 3 ) ( m o d 3 ) 6 different spaces (2,3)\pmod{3}\implies \text{6 different spaces} ( 3 , 1 ) ( m o d 3 ) 6 different spaces (3,1)\pmod{3}\implies \text{6 different spaces} ( 3 , 2 ) ( m o d 3 ) 6 different spaces (3,2)\pmod{3}\implies \text{6 different spaces} ( 3 , 3 ) ( m o d 3 ) 4 different spaces (3,3)\pmod{3}\implies \text{4 different spaces}

In our original setup of 32 32 checkers in one half of the board, we have:

6 checkers ( 1 , 1 ) ( m o d 3 ) \text{6 checkers }\equiv (1,1)\pmod{3} 3 checkers ( 1 , 2 ) ( m o d 3 ) \text{3 checkers }\equiv (1,2)\pmod{3} 3 checkers ( 1 , 3 ) ( m o d 3 ) \text{3 checkers }\equiv (1,3)\pmod{3} 6 checkers ( 2 , 1 ) ( m o d 3 ) \text{6 checkers }\equiv (2,1)\pmod{3} 3 checkers ( 2 , 2 ) ( m o d 3 ) \text{3 checkers }\equiv (2,2)\pmod{3} 3 checkers ( 2 , 3 ) ( m o d 3 ) \text{3 checkers }\equiv (2,3)\pmod{3} 4 checkers ( 3 , 1 ) ( m o d 3 ) \text{4 checkers }\equiv (3,1)\pmod{3} 2 checkers ( 3 , 2 ) ( m o d 3 ) \text{2 checkers }\equiv (3,2)\pmod{3} 2 checkers ( 3 , 3 ) ( m o d 3 ) \text{2 checkers }\equiv (3,3)\pmod{3}

Thus the number of different arrangements is: ( 9 6 ) ( 9 3 ) ( 6 3 ) ( 9 6 ) ( 9 3 ) ( 6 3 ) ( 6 4 ) ( 6 2 ) ( 4 2 ) = 26885053440000 \dbinom{9}{6}\cdot\dbinom{9}{3}\cdot\dbinom{6}{3}\cdot\dbinom{9}{6}\cdot\dbinom{9}{3}\cdot\dbinom{6}{3}\cdot\dbinom{6}{4}\cdot\dbinom{6}{2}\cdot\dbinom{4}{2}=26885053440000

Thus M = 4 M=4 and N = 2688505344 N=2688505344 so the last three digits of M + n M+n is 348 \boxed{348} .

You should clarify what you mean by half the board. Is it the black half? Or the left half?

What happens if the jump takes you off the board? Are calculations done mod 8?

Also, you will need to justify that such positions are indeed possible. You currently only have an upper bound.

Calvin Lin Staff - 7 years ago

Log in to reply

  1. I already put the definition of half the board in the details and assumptions, so I think we're fine here.
  2. Each checker can only just in the place with the same color in the above coloring. Cases where the checker jumps off the board is not considered.
  3. From every single position, you can get to any other position with the same color. This can be verified simply by checking each case and finding the two squares.
If it makes any easier for everyone to understand, the movements are basically just jumping from ( i , j ) (i,j) to ( i + 2 m , j + 2 n ) (i+2m,j+2n) for integers m , n m,n .

Daniel Liu - 7 years ago

Log in to reply

Re 3: Ah, I thought that there needed to be a checker in the square ( m , n ) (m,n) , which would be tricky to justify the sequence of jumps. Instead, we have a much simpler version.

Thanks!

Calvin Lin Staff - 7 years ago

Log in to reply

@Calvin Lin If we had to have a checker in the square ( m , n ) (m,n) , then I actually think that not all of the possible positions I outlined above are actually possible. I'm not exactly sure about that though.

Daniel Liu - 7 years ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...