# chessboard

Published articles for chessboard.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## A Rook Game

DevFeed: [A Rook Game](<https://devfeed.tech/articles/a-rook-game-40365.md>)

Original publisher: [Read original article](<https://www.jeremykun.com/2014/08/31/a-rook-game/>)

Published: 2014-08-31T17:51:37Z

Content type: tutorial

Language: en

Sources: [Jeremy Kun](<https://devfeed.tech/sources/jeremy-kun.md>)

Topics: [Algorithm](<https://devfeed.tech/topics/algorithm.md>), [Mathematics](<https://devfeed.tech/topics/mathematics.md>)

Tags: [algorithm](<https://devfeed.tech/tags/algorithm.md>), [board-games](<https://devfeed.tech/tags/board-games.md>), [chessboard](<https://devfeed.tech/tags/chessboard.md>), [game](<https://devfeed.tech/tags/game.md>), [games](<https://devfeed.tech/tags/games.md>), [mathematics](<https://devfeed.tech/tags/mathematics.md>), [strategy](<https://devfeed.tech/tags/strategy.md>), [symmetry](<https://devfeed.tech/tags/symmetry.md>)

### AI overview

This article presents a rook game on an 8x8 chessboard in which players move only south or west. It shows that symmetry provides the optimal strategy: move the rook to the diagonal whenever possible and return it there after the opponent moves it away. The first player wins from an off-diagonal starting square; otherwise, the second player wins.

### Source excerpt

Problem: Two players take turns moving a rook on an 8x8 chessboard. The rook is only allowed to move south or west (but not both in a single turn), and may move any number of squares in the chosen direction on a turn. The loser is the player who first cannot move the rook. What is the optimal play for any starting position? rook-board Solution: Take advantage of the symmetry of the board.

## Busy Beavers, and the Quest for Big Numbers

DevFeed: [Busy Beavers, and the Quest for Big Numbers](<https://devfeed.tech/articles/busy-beavers-and-the-quest-for-big-numbers-40262.md>)

Original publisher: [Read original article](<https://www.jeremykun.com/2012/02/08/busy-beavers-and-the-quest-for-big-numbers/>)

Published: 2012-02-08T19:42:22Z

Content type: article

Language: en

Sources: [Jeremy Kun](<https://devfeed.tech/sources/jeremy-kun.md>)

Topics: [Mathematics](<https://devfeed.tech/topics/mathematics.md>), [Math and Logic](<https://devfeed.tech/topics/math-and-logic.md>), [Computing](<https://devfeed.tech/topics/computing.md>)

Tags: [ackermann-function](<https://devfeed.tech/tags/ackermann-function.md>), [busy-beaver](<https://devfeed.tech/tags/busy-beaver.md>), [chessboard](<https://devfeed.tech/tags/chessboard.md>), [computing](<https://devfeed.tech/tags/computing.md>), [infinite](<https://devfeed.tech/tags/infinite.md>), [mathematics](<https://devfeed.tech/tags/mathematics.md>), [numbers](<https://devfeed.tech/tags/numbers.md>), [primer](<https://devfeed.tech/tags/primer.md>), [theory](<https://devfeed.tech/tags/theory.md>), [turing-machine](<https://devfeed.tech/tags/turing-machine.md>)

### AI overview

This article examines how the ability to describe very large numbers reflects progress in mathematical and scientific thought. It introduces historical examples, including Archimedes' estimate for the number of grains of sand in the universe, and connects them to computational topics such as Busy Beavers.

### Source excerpt

Finding Bigger Numbers, a Measure of Human Intellectual Progress Before we get into the nitty gritty mathematics, I'd like to mirror the philosophical and historical insights that one can draw from the study of large numbers. That may seem odd at first. What does one even mean by "studying" a large number? Of course, I don't mean we stare at the number 1,000,000,000,000, which is quite large, and wonder how mankind can benefit from its elusive properties.

## Tiling a Chessboard with Dominoes (Opposite Colors Removed)

DevFeed: [Tiling a Chessboard with Dominoes (Opposite Colors Removed)](<https://devfeed.tech/articles/tiling-a-chessboard-with-dominoes-opposite-colors-removed-40248.md>)

Original publisher: [Read original article](<https://www.jeremykun.com/2011/11/18/tiling-a-chessboard-2/>)

Published: 2011-11-18T10:32:54Z

Content type: tutorial

Language: en

Sources: [Jeremy Kun](<https://devfeed.tech/sources/jeremy-kun.md>)

Topics: [Algorithm](<https://devfeed.tech/topics/algorithm.md>)

Tags: [algorithm](<https://devfeed.tech/tags/algorithm.md>), [analysis](<https://devfeed.tech/tags/analysis.md>), [chessboard](<https://devfeed.tech/tags/chessboard.md>), [color](<https://devfeed.tech/tags/color.md>), [dominoes](<https://devfeed.tech/tags/dominoes.md>), [proofs-without-words](<https://devfeed.tech/tags/proofs-without-words.md>), [tiling](<https://devfeed.tech/tags/tiling.md>)

### AI overview

A constructive solution shows that a chessboard with two opposite-colored squares removed can be tiled with 2-by-1 dominoes. The article explains the placement pattern and notes that the corresponding algorithm runs in linear time.

### Source excerpt

This is a natural follow-up to our first gallery entry on the impossibility of tiling certain chessboards with dominoes. Problem: Suppose we remove two squares from a chessboard which have opposite color. Is it possible to tile the remaining squares with 2-by-1 dominoes? Solution: Notice that if we remove two squares of opposite color, then there is only one way to place dominoes on the remaining squares according to this scheme (one cannot tile a domino across the "walls").

## Tiling a Chessboard

DevFeed: [Tiling a Chessboard](<https://devfeed.tech/articles/tiling-a-chessboard-40213.md>)

Original publisher: [Read original article](<https://www.jeremykun.com/2011/06/26/tiling-a-chessboard/>)

Published: 2011-06-26T20:24:09Z

Content type: tutorial

Language: en

Sources: [Jeremy Kun](<https://devfeed.tech/sources/jeremy-kun.md>)

Topics: [color](<https://devfeed.tech/topics/color.md>), [standard](<https://devfeed.tech/topics/standard.md>)

Tags: [chessboard](<https://devfeed.tech/tags/chessboard.md>), [color](<https://devfeed.tech/tags/color.md>), [dominoes](<https://devfeed.tech/tags/dominoes.md>), [mathematics](<https://devfeed.tech/tags/mathematics.md>), [standard](<https://devfeed.tech/tags/standard.md>), [tiling](<https://devfeed.tech/tags/tiling.md>)

### AI overview

The article uses coloring arguments to show that certain chessboard and grid regions cannot be tiled with dominoes. It first analyzes 2-by-1 dominoes on a chessboard with two opposite corners removed, then applies a specially chosen coloring to a 3-by-1 domino problem and generalizes the proof method.

### Source excerpt

Problem: Take a chessboard and cut off two opposite corners. Is it possible to completely tile the remaining board with 2-by-1 dominoes? Solution: Notice that every domino covers exactly one white tile and one black tile. Counting up the colors, we have 32 white and 30 black. Hence, any tiling by 2-by-1 dominoes will leave two extra white squares unaccounted for. So no such tiling is possible. Problem: Cut one corner off a chessboard.