Difference between revisions of "Mustplay region"

From HexWiki
Jump to: navigation, search
(Creating "Mustplay region")
 
(Added cross reference to AND and OR rules)
Line 259: Line 259:
  
 
Mustplay analysis is used in computer Hex to reduce the number of possibilities that must be considered for a player's next move. This drastically reduces the size of the search tree.
 
Mustplay analysis is used in computer Hex to reduce the number of possibilities that must be considered for a player's next move. This drastically reduces the size of the search tree.
 +
 +
== See also ==
 +
 +
* [[AND and OR rules]]
  
 
== References ==
 
== References ==

Revision as of 02:43, 17 December 2021

Informally, a mustplay region for a player is a set of cells in which the player must move to avoid losing immediately. Mustplay analysis is an important tool for analyzing Hex positions, because it can help narrow down the number of possibilities a player must consider.

Example

Consider the following position, with Blue to move:

abcdefg1234567

To determine Blue's mustplay region, Blue should consider the possible ways in which Red could make a connection if it were Red's turn. These are called Red's threats. Red has (at least) the following threats:

  • If Red plays at e5, then Red is connected via two copies of edge template II and two bridges, as shown:
    abcdefg1234567
  • Alternatively, if Red plays at e5, Red is also connected via edge template II and edge template III2e, as shown:
    abcdefg1234567
    While the last two connections both use a Blue stone at e5, they have different carriers.
  • If Red plays at d5, Red is connected via a 3rd row ladder, using f6 as a ladder escape. In this case, the carrier consists of the path the ladder will take and the space required for the ladder escape:
    abcdefg1234567

Blue's mustplay region consists of those empty cells that are in the carriers of all of Red's known threats. Therefore, Blue's mustplay region consists of the cells d1, e1, e5, e6, e7, and f7.

abcdefg1234567

Note that this does not mean that all of d1, e1, e5, e6, e7, and f7 are winning moves for Blue, or even that Blue has any winning moves at all. Rather, what it means is that all other moves are losing. In other words, if Blue has any winning moves at all, they must be in Blue's mustplay region. Blue must now consider each of the six moves d1, e1, e5, e6, e7, and f7 and check if any of them are winning, or barring that, which one of them is least likely to be losing.

To help narrow down Blue's choices even further, it helps to consider captured and dominated cells. In the above example, d1, e1, e7, and f7 are captured by Red, and therefore, Blue should not play there. This leaves Blue with e5 and e6 as the only possible moves to consider. It so happens that e5 is winning and e6 is losing. Therefore, considering the mustplay region has helped Blue identify the only possible winning move. Blue will play e5 and win the game.

Definition

From the point of view of a player, a threat is a virtual connection between the opponent's board edges that the opponent can create in a single move. The carrier of the threat is the set of cells (empty or not) that are required for the virtual connection to be valid. The player's mustplay region is determined as follows:

  • Identify as many threats as possible.
  • Determine the intersection of the carriers of all of these threats.
  • With respect to the chosen set of threats, the mustplay region is the set of empty cells in that intersection.

Properties

  • All moves outside a player's mustplay region are losing. Moves within the mustplay region may be winning or losing.
  • If a player's mustplay region is empty, the player is losing.
  • If there are no winning moves in a player's mustplay region, the player is losing.
  • The mustplay region is not unique. By considering more opponent threats, a player may arrive at a smaller mustplay region.

Example: no winning move

If there are no winning moves in a player's mustplay region, the player is losing. To illustrate this, consider the following position, with Blue to move.

abcde12345

Red's main threats are:

The only empty cell in the carrier of all three threats is b5, hence Blue's mustplay region consists of b5. This means that all moves except possibly b5 are losing for Blue.

abcde12345

Unfortunately for Blue, b5 is also losing, because if Blue plays b5, Red can win as follows:

abcde123452431

Therefore Blue has no winning moves at all and is losing the game.

Applications

Foiling

Consider the following situation, with Blue to move:

abcdefg1234567

Red's main threats are:

Therefore, Blue's mustplay region consists of the following 5 cells:

abcdefg1234567xyzuv

Of these, y, z, u, and v are losing: if Blue plays there, Red wins by responding at x. Blue's unique winning move is x. This move is also known as a foiling move, because it takes away Red's template and Red's ladder escape at the same time.

Solving Hex puzzles

Consider the following puzzle, due to Eric Demer. Blue to move and win.

abcdefg1234567

At first, the situation seems confusing here. Blue's central stones neither seem to have a convincing connection to the left edge nor to the right one.

Mustplay analysis helps clarify the situation. First, let's note that Red's e3 and g3 are already very strongly connected to the top edge; Blue cannot gain anything by intruding into that connection. (In fact, Red has captured rows 1–3). We therefore concentrate on the bottom part of the board. Within that region, Red's main threats are:

We therefore see that Blue's mustplay region consists of the following six cells:

abcdefg1234567xyzuvw

Of these, x, y, u, v, and w are losing: if Blue plays there, Red can respond at z, re-establishing both threats. The unique winning move for Blue is z. In fact, this is basically a foiling move.

Verification of templates

Mustplay analysis is also useful in the verification of templates. In that context, it is sometimes known as template reduction. For example, consider edge template V1a:

To show that the template is valid, we must show that Blue has no way of disconnecting the template's red stone from the edge. We use mustplay analysis to reduce the number of possiblities. Red's main threats are:

Therefore, Blue's mustplay region consists of only three cells:

To finish verifying the template, it then remains to show that each of these three moves are losing for Blue. See the article on edge template V1a for the details.

Computer Hex

Mustplay analysis is used in computer Hex to reduce the number of possibilities that must be considered for a player's next move. This drastically reduces the size of the search tree.

See also

References

R. Hayward, Y. Björnsson, M. Johanson, M. Kan, N. Po, and J. van Rijswijck: "Solving 7x7 Hex with domination, fill-in, and virtual connections", Theoretical Computer Science 349;123–139, 2005.

R. Hayward: "A puzzling Hex primer". In Games of No Chance 3, Cambridge University Press, 56:151–162, 2009.