Fit digits 1 to 8 in such a way that no two consecutive numbers are next to each other.
An example is also attached.
Please count your attempts!
Printable View
Fit digits 1 to 8 in such a way that no two consecutive numbers are next to each other.
An example is also attached.
Please count your attempts!
Hello, u2_wa!
This is an excellent puzzle!
Quote:
Place the digits 1 to 8 so that no two consecutive numbers are adjacent.
("Adjacent" numbers are in cells that share a side or a vertex.)Code:*---*
| |
*---*---*---*
| | | |
*---*---*---*
| | | |
*---*---*---*
| |
*---*
I solved this while in college (back in the Jurassic Period)
. . and have a logical solution.
I'll post it later, after everyone has tried it.
Hi u2_wa,
I have no logical approach to this one, but through trial and many errors, I came up with this. I'll 'white' it out, in case others are still struggling and want to solve it.
Code:
| 2 |
--------------
| 6 | 8 | 5 |
--------------
| 4 | 1 | 3 |
--------------
| 7 |
Okay, here's my "logical" approach to this puzzle.
We have the eight cells labeledto
.
There are two "central cells",and
Code:*---*
| a |
*---*---*---*
| b | c | d |
*---*---*---*
| e | f | g |
*---*---*---*
| h |
*---*
There are eight digits to install:
. . two "end" numbers and six "middle" numbers.
. .
Place a middle number in a central cell, say, 4 in cell.
Code:*---*
| x |
*---*---*---*
| x | 4 | x |
*---*---*---*
| x | x | x |
*---*---*---*
| h |
*---*
We see that its neighbors (3 and 5) cannot be placed
. . in cells
So both 3 and 5 cannot be installed.
Conclusion: the central cells must not contain a middle number.
Hence, 1 and 8 must go in cellsand
Code:*---*
| a |
*---*---*---*
| b | 1 | d |
*---*---*---*
| e | 8 | g |
*---*---*---*
| h |
*---*
2 cannot be in cells
7 cannot be in cellsCode:*---*
| 7 |
*---*---*---*
| b | 1 | d |
*---*---*---*
| e | 8 | g |
*---*---*---*
| 2 |
*---*
3 cannot be inor
. . . 3 may be in
or
Pick one: say,Code:*---*
| 7 |
*---*---*---*
| 3 | 1 | d |
*---*---*---*
| e | 8 | g |
*---*---*---*
| 2 |
*---*
6 cannot be in
Also, 6 cannot be in cell
Else 4 and 5 will be in cellsand
(and be adjacent).
. . Hence: .Code:*---*
| 7 |
*---*---*---*
| 3 | 1 | d |
*---*---*---*
| e | 8 | 6 |
*---*---*---*
| 2 |
*---*
4 cannot be in cell. . .
And finally: .Code:
*---*
| 7 |
*---*---*---*
| 3 | 1 | 4 |
*---*---*---*
| 5 | 8 | 6 |
*---*---*---*
| 2 |
*---*
Solution
Disregarding rotations and reflections, there is one solution.