3

I am looking for interactive exercises that involve playing chess against computer which makes nullmoves allowing the learner to attack without thinking of defense. I know of one platform which allows this kind of exercises. For example:

This resource research is needed to write a master thesis focused on this kind of exercises. In this kind of work it is customary to include detailed information on already existing resources.

MichalRyszardWojcik
  • 3,300
  • 16
  • 39

1 Answers1

1

Threats The elegant notion of threat (which is essentially what is asked about) is central to the world of adversarial chess problems (direct mates & self mates).

Roughly speaking, suppose White (who I will take to be the active player in what follows) has a winning move (call it a key). Then we imagine what could happen if White were to get a second move right away (or equivalently, if Black were to play a totally irrelevant move). A move that continues to win is called a threat. A Black move is called a defence if it defeats the looming threat. Of course now there will be a different winning continuation for White! (Indeed there must since by hypothesis the key wins for White.) A key may have multiple threats.

Focusing on threats & defences, massively reduces the branching factor, and can render the solution more comprehensible. The concept of threat is also crucial for thematic settings and consequent artistic appreciation.

Threats are not always applicable:

  1. Check If the key is checking, then an immediate Black response is entailed (to use the terminology of combinatorial game theory).
  2. Block problem There are many positions where White has no win in time after the key unless Black actually moves. (aka "Zugzwang".) These are very interesting, and a lot of endgame theory depends upon them. In some, even an infinite number of White moves will not suffice to dislodge Black if he is never required to move. For example, trebuchet.
  3. Unrealizable If all Black moves defeat the threat, then it's a waste of time & confusing to explore the hypothetical. Miniatures can often fall into this category. In this case if solving e.g. with Popeye it's best to disable "threats". [It might be best to have this to automatically decided per each individual White move, rather than a global option.]

But most often, the notion of threat gives a massively simpler perspective of the game-tree.

I’ve wondered if a similar concept could be used in interpreting tablebases for endgame studies, because they can otherwise be opaque. It may also help with regular chess engines.

Diminishing value of chains of threats In algorithmic terms, threats can be cascaded recursively into a chain (move A threatens B threatens C etc) in problem engines.

However, while knowing a single "threat" move and its defences simplifies the picture of a position, a chain of threats will usually diverge rapidly from the correct value of the position.

If White can play an indefinite number of moves, it will teach a player how to move pieces, and how to mate. It's a bit like a tutorial prologue at the beginning of a large video game to show how the commands work. But it is very limited in scope, because the nature of chess is adversarial.

The mathematician Claude Shannon famously remarked that if null move is legal, then by a simple strategy-stealing argument, chess cannot be a win for Black.

Seriesmovers There are certainly problems where only one side moves: so-called seriesmovers. These may be very interesting, but they teach us little about the regular game.

A variant of the seriesmover, the so-called "parry series", allows e.g. White to make all of the moves, except that Black can respond to checks. (Normally in seriesmovers, checking moves are not allowed except for the final move.)

Lichess.org Apart from Apronus, one can also do a null-move exercise with lichess.org. Just play White moves in the board editor and when one puts the opponent in check, go to analysis engine (ensuring that Black is to play) and accept the Black move.

Laska
  • 11,846
  • 4
  • 44
  • 76
  • 1
    It is really an attempt to define what a 'threat chess problem' is, and was first proposed (as far as I know) by H. Lehner in Österreichische Schachzeitung (1875) in terms of making only white moves -- a problem that could be 'solved' in this way he classified as a threat problem. (No moves by black allowed at all.) I can't recall seeing any references in English literature, so I doubt that it was widely read. The current chess problem lexicon does not define 'threat problem' or its presumed opposite 'block problem', I believe. –  Aug 27 '23 at 05:49
  • @user30536 which lexicon is this please? – Laska Aug 28 '23 at 06:43
  • 1
    "The current chess problem lexicon" for me is Milan's Encyclopedia - there can only be one ;-) Quote: "A problem in which White has to threaten something (specific) to make Black weaken his position, in order to mate in the stipulated number of moves. Mere waiting would help Black delay the outcome." But a SCHWALBE article (?) proves @user30536 right - with things like threatening zugzwang or other shenanigans. – Hauke Reddmann Aug 28 '23 at 07:45
  • 1
    @Laska Velimirović & Valtonen: The definitive book: Encyclopedia of Chess Problems - Themes and Terms. (Belgrade, 2018 or later. The current edition is 4th, I believe). And no, I was not mistaken: it does not define the term 'threat problem', as in any sound orthodox direct mate problem White threatens a mate in N move, and there's nothing Black can do to stop it. –  Aug 28 '23 at 10:32
  • I see there are lots of entry for threat in V&V. Basically "A move or variation which White will play (usually following his key) if Black does nothing to defend against it. Problems which do not have threats following the key are blocks. (Definition from FIDE Album.)" – Laska Aug 28 '23 at 11:04
  • I think V&V presume that "threat problem" = "problem with threats" – Laska Aug 29 '23 at 03:36