7
$\begingroup$

Consider chess with the following additional rules:

The edges of the board consist of ranks 1 and 8 and columns a and h.

  • Bouncing: When a piece goes from a non-edge square to an edge square, it must make another move. Exception: When a piece goes from a rank on the edge to a column on the edge or from a column on the edge to a rank on the edge, it must also bounce, but this can be done only once per turn.
  • Explosion: When a piece captures another piece, both the piece that captures, the captured piece, and all pieces that are on a square that directly or diagonally neighbours the square that is captured are removed from the board.
  • The goal of the game is to either checkmate or explode the opposing king.

Given the standard initial position on a chess board, can one of the sides force a win?

$\endgroup$
5
  • 1
    $\begingroup$ So can you have infinite Bouncing? Say a Pawn on the 'a' or 'h' files, what happens when it 'must' move but there are no legal moves? $\endgroup$
    – stackErr
    Commented Apr 18, 2016 at 20:22
  • $\begingroup$ What if the king is beside one of the captured pieces? Is that considered a checkmate? A check? Can a king capture a piece?? $\endgroup$
    – stackErr
    Commented Apr 18, 2016 at 20:27
  • 2
    $\begingroup$ I've played a version of chess where each piece had a special property and I think knights had explosion. It was nasty losing your whole queenside from just one fork. $\endgroup$
    – Reti43
    Commented Apr 18, 2016 at 20:40
  • $\begingroup$ @stackErr (1) No. A piece can only bounce once per turn, because it has to go from a non-edge square to an edge square. (2) If the king is beside one of the captured pieces, then he will explode, and hence lose. If the king captures a piece, he'll explode and lose. $\endgroup$
    – wythagoras
    Commented Apr 18, 2016 at 20:42
  • $\begingroup$ A variant without the bouncing and where pawns are safe from explosions is called Atomic Chess and you can play it online. $\endgroup$
    – Sleafar
    Commented Apr 19, 2016 at 5:08

2 Answers 2

10
$\begingroup$

A simple way:

White opens with Nh3-g5 threatening Nxf7#. The only way to defend is to play f6 or f5, but then White plays Nf7 and Nxd8# is unstoppable.

$\endgroup$
8
  • $\begingroup$ This looks like the way. Very clever! $\endgroup$
    – SQLnoob
    Commented Apr 18, 2016 at 21:34
  • $\begingroup$ Need some time to understand that Nh3-g5 means the knight is bouncing, haha $\endgroup$
    – justhalf
    Commented Apr 19, 2016 at 2:07
  • $\begingroup$ Why can't Black play Kxf7? $\endgroup$
    – EMBLEM
    Commented Apr 19, 2016 at 3:03
  • $\begingroup$ @EMBLEM Black is free to explode his own king if he wants, of course, I just don't think that would be very bright :p $\endgroup$
    – ffao
    Commented Apr 19, 2016 at 3:32
  • $\begingroup$ @ffao but if the king has exploded, is that really mate? $\endgroup$
    – Carl
    Commented Apr 19, 2016 at 4:00
1
$\begingroup$

Not sure if it's this straightforward:

White opens with e3. He's threatening to move his Queen to h5 and then bounce to f7 (Q->h5->f7) for mate on the very next move, so Black needs to respond with g6 to prevent this. White moves Q->h5->g5 and now threatens mate on e7. Black moves pawn or Knight to f6 to block. White then goes Q->h6->f8 and wins.

Turns out it wasn't that simple. Editing to improve this solution:

I didn't note previously that 1 ... h5 is also a defense against White's mate on the second move. So instead I propose 1. e4 h5 2. Qf3 f6 3. Qa3->e7 for mate.

Edit2: That doesn't work either. Back to the drawing board!

$\endgroup$
6
  • $\begingroup$ The queen starts on an edge square, so it can't bounce on its first move. $\endgroup$
    – f''
    Commented Apr 18, 2016 at 21:10
  • 1
    $\begingroup$ Black can also respond with 1... h5 $\endgroup$
    – ffao
    Commented Apr 18, 2016 at 21:12
  • $\begingroup$ @f'' "When a piece goes form a rank on the edge to a coulumn on the edge or form a coulumn on the edge to a rank on the edge, it must also bounce, but this can be done only once per turn." This makes it sound like the Queen can bounce on her first move. But as other commenters noted, I missed that 1 ... h5 is also a defense. $\endgroup$
    – SQLnoob
    Commented Apr 18, 2016 at 21:17
  • $\begingroup$ Oh, that wasn't there when I first read the problem. $\endgroup$
    – f''
    Commented Apr 18, 2016 at 21:18
  • $\begingroup$ Then your solution also doesn't work because of 1. e3 g6 2. Qh5-g5 Bh6xg5. $\endgroup$
    – f''
    Commented Apr 18, 2016 at 21:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.