Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Incubator Q&A

Welcome to the staging ground for new communities! Each proposal has a description in the "Descriptions" category and a body of questions and answers in "Incubator Q&A". You can ask questions (and get answers, we hope!) right away, and start new proposals.

Are you here to participate in a specific proposal? Click on the proposal tag (with the dark outline) to see only posts about that proposal and not all of the others that are in progress. Tags are at the bottom of each post.

Post History

71%
+3 −0
Incubator Q&A Draw the boundaries of the eight dominoes

+---+---+---+---+ | | | 0 0 1 3 | + + | | | 1 1 0 3 | + + | | | 2 3 3 2 | + + | ...

posted 1mo ago by Peter Taylor‭

Answer
#1: Initial revision by user avatar Peter Taylor‭ · 2026-08-06T08:06:33Z (about 1 month ago)
```txt
+---+---+---+---+
|               |
| 0   0   1   3 |
+               +
|               |
| 1   1   0   3 |
+               +
|               |
| 2   3   3   2 |
+               +
|               |
| 3   2   2   1 |
+---+---+---+---+
```

<details><summary>Step 1</summary>

The `3` in the bottom-left must be with one of the `2`s next to it, so we can separate every other `2-3` boundary:

```txt
+---+---+---+---+
|               |
| 0   0   1   3 |
+               +
|               |
| 1   1   0   3 |
+           +---+
|           |   |
| 2   3   3 | 2 |
+       +---+   +
|               |
| 3   2   2   1 |
+---+---+---+---+
```

</details>

<details><summary>Step 2</summary>

Then starting from the `2` on the right edge we have three forced dominos due to cells with only one available neighbour:

```txt
+---+---+---+---+
|               |
| 0   0   1   3 |
+               +
|               |
| 1   1   0   3 |
+---+       +---+
|   |       |   |
| 2 | 3   3 | 2 |
+   +---+---+   +
|   |       |   |
| 3 | 2   2 | 1 |
+---+---+---+---+
```

</details>

<details><summary>Step 3</summary>

If there's a `3-3` at the top-right then we force the other `3-3` to split up:

```txt
+---+---+---+---+
|           |   |
| 0   0   1 | 3 |
+   +---+---+   +
|   |   |   |   |
| 1 | 1 | 0 | 3 |
+---+   +   +---+
|   |   |   |   |
| 2 | 3 | 3 | 2 |
+   +---+---+   +
|   |       |   |
| 3 | 2   2 | 1 |
+---+---+---+---+
```

and we end up with two `0-1`s in the top-left. Therefore we split the `3-3` in the top-right:

```txt
+---+---+---+---+
|       |       |
| 0   0 | 1   3 |
+       +---+---+
|       |       |
| 1   1 | 0   3 |
+---+   +---+---+
|   |       |   |
| 2 | 3   3 | 2 |
+   +---+---+   +
|   |       |   |
| 3 | 2   2 | 1 |
+---+---+---+---+
```

</details>

<details><summary>Step 4</summary>

This forces the other `3-3` and the top-left square can only form distinct dominos in one way:

```txt
+---+---+---+---+
|       |       |
| 0   0 | 1   3 |
+---+---+---+---+
|       |       |
| 1   1 | 0   3 |
+---+---+---+---+
|   |       |   |
| 2 | 3   3 | 2 |
+   +---+---+   +
|   |       |   |
| 3 | 2   2 | 1 |
+---+---+---+---+
```

</details>

Alternatively,

<details><summary>Step 3 alternate</summary>

If we split the `0-0` in the top-left then the leftmost one forms a `0-1` and the rightmost one would also form a `0-1` whichever remaining neighbour it takes:

```txt
+---+---+---+---+
|   |           |
| 0 | 0   1   3 |
+   +           +
|   |           |
| 1 | 1   0   3 |
+---+       +---+
|   |       |   |
| 2 | 3   3 | 2 |
+   +---+---+   +
|   |       |   |
| 3 | 2   2 | 1 |
+---+---+---+---+
```

Therefore the `0-0` is forced:

```txt
+---+---+---+---+
|       |       |
| 0   0 | 1   3 |
+---+---+       +
|               |
| 1   1   0   3 |
+---+       +---+
|   |       |   |
| 2 | 3   3 | 2 |
+   +---+---+   +
|   |       |   |
| 3 | 2   2 | 1 |
+---+---+---+---+
```

</details>

<details><summary>Step 4 alternate</summary>

This forces a chain of two more dominos through cells with only one available neighbour:

```txt
+---+---+---+---+
|       |       |
| 0   0 | 1   3 |
+---+---+       +
|       |       |
| 1   1 | 0   3 |
+---+---+---+---+
|   |       |   |
| 2 | 3   3 | 2 |
+   +---+---+   +
|   |       |   |
| 3 | 2   2 | 1 |
+---+---+---+---+
```

</details>

<details><summary>Step 5 alternate</summary>

Since we now have a `3-3` we must split the `3-3` in the top-right, completing the solution:

```txt
+---+---+---+---+
|       |       |
| 0   0 | 1   3 |
+---+---+---+---+
|       |       |
| 1   1 | 0   3 |
+---+---+---+---+
|   |       |   |
| 2 | 3   3 | 2 |
+   +---+---+   +
|   |       |   |
| 3 | 2   2 | 1 |
+---+---+---+---+
```

</details>