The eight queens puzzle is the problem of placing eight
chess
Chess is a board game for two players. It is an abstract strategy game that involves Perfect information, no hidden information and no elements of game of chance, chance. It is played on a square chessboard, board consisting of 64 squares arran ...
queen
Queen most commonly refers to:
* Queen regnant, a female monarch of a kingdom
* Queen consort, the wife of a reigning king
* Queen (band), a British rock band
Queen or QUEEN may also refer to:
Monarchy
* Queen dowager, the widow of a king
* Q ...
s on an 8×8
chessboard
A chessboard is a game board used to play chess. It consists of 64 squares, 8 rows by 8 columns, on which the chess pieces are placed. It is square in shape and uses two colours of squares, one light and one dark, in a chequered pattern. During p ...
so that no two queens threaten each other; thus, a solution requires that no two queens share the same row, column, or diagonal. There are 92 solutions. The problem was first posed in the mid-19th century. In the modern era, it is often used as an example problem for various
computer programming
Computer programming or coding is the composition of sequences of instructions, called computer program, programs, that computers can follow to perform tasks. It involves designing and implementing algorithms, step-by-step specifications of proc ...
techniques.
The eight queens puzzle is a special case of the more general ''n'' queens problem of placing ''n'' non-attacking queens on an ''n''×''n'' chessboard. Solutions exist for all
natural number
In mathematics, the natural numbers are the numbers 0, 1, 2, 3, and so on, possibly excluding 0. Some start counting with 0, defining the natural numbers as the non-negative integers , while others start with 1, defining them as the positive in ...
s ''n'' with the exception of ''n'' = 2 and ''n'' = 3. Although the exact number of solutions is only known for ''n'' ≤ 27, the
asymptotic growth rate of the number of solutions is approximately (0.143 ''n'')
''n''.
History
Chess composer
A chess composer is a person who creates endgame studies or chess problems. Chess composers usually specialize in a particular genre, e.g. endgame studies, twomovers, threemovers, moremovers, helpmates, selfmates, fairy problems, or retro ...
Max Bezzel published the eight queens puzzle in 1848.
Franz Nauck published the first solutions in 1850.
W. W. Rouse Ball
Walter William Rouse Ball (14 August 1850 – 4 April 1925), known as W. W. Rouse Ball, was a British mathematician, lawyer, and fellow at Trinity College, Cambridge, from 1878 to 1905. He was also a keen amateur magician, and the founding ...
(1960) "The Eight Queens Problem", in ''Mathematical Recreations and Essays'', Macmillan, New York, pp. 165–171. Nauck also extended the puzzle to the ''n'' queens problem, with ''n'' queens on a chessboard of ''n''×''n'' squares.
Since then, many
mathematician
A mathematician is someone who uses an extensive knowledge of mathematics in their work, typically to solve mathematical problems. Mathematicians are concerned with numbers, data, quantity, mathematical structure, structure, space, Mathematica ...
s, including
Carl Friedrich Gauss
Johann Carl Friedrich Gauss (; ; ; 30 April 177723 February 1855) was a German mathematician, astronomer, geodesist, and physicist, who contributed to many fields in mathematics and science. He was director of the Göttingen Observatory and ...
, have worked on both the eight queens puzzle and its generalized ''n''-queens version. In 1874,
S. Günther proposed a method using
determinant
In mathematics, the determinant is a Scalar (mathematics), scalar-valued function (mathematics), function of the entries of a square matrix. The determinant of a matrix is commonly denoted , , or . Its value characterizes some properties of the ...
s to find solutions.
J.W.L. Glaisher refined Gunther's approach.
In 1972,
Edsger Dijkstra
Edsger Wybe Dijkstra ( ; ; 11 May 1930 – 6 August 2002) was a Dutch computer scientist, programmer, software engineer, mathematician, and science essayist.
Born in Rotterdam in the Netherlands, Dijkstra studied mathematics and physics and the ...
used this problem to illustrate the power of what he called
structured programming Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making specific disciplined use of the structured control flow constructs of selection ( if/then/else) and repet ...
. He published a highly detailed description of a
depth-first
Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. The algorithm starts at the root node (selecting some arbitrary node as the root node in the case of a graph) and explores as far as possible al ...
backtracking algorithm.
Constructing and counting solutions when ''n'' = 8
The problem of finding all solutions to the 8-queens problem can be quite computationally expensive, as there are 4,426,165,368 possible arrangements of eight queens on an 8×8 board, but only 92 solutions. It is possible to use shortcuts that reduce computational requirements or rules of thumb that avoids
brute-force computational techniques. For example, by applying a simple rule that chooses one queen from each column, it is possible to reduce the number of possibilities to 16,777,216 (that is, 8
8) possible combinations. Generating
permutation
In mathematics, a permutation of a set can mean one of two different things:
* an arrangement of its members in a sequence or linear order, or
* the act or process of changing the linear order of an ordered set.
An example of the first mean ...
s further reduces the possibilities to just 40,320 (that is,
8!), which can then be checked for diagonal attacks.
The eight queens puzzle has 92 distinct solutions. If solutions that differ only by the
symmetry
Symmetry () in everyday life refers to a sense of harmonious and beautiful proportion and balance. In mathematics, the term has a more precise definition and is usually used to refer to an object that is Invariant (mathematics), invariant und ...
operations of rotation and reflection of the board are counted as one, the puzzle has 12 solutions. These are called ''fundamental'' solutions; representatives of each are shown below.
A fundamental solution usually has eight variants (including its original form) obtained by rotating 90, 180, or 270° and then reflecting each of the four rotational variants in a mirror in a fixed position. However, one of the 12 fundamental solutions (solution 12 below) is identical to its own 180° rotation, so has only four variants (itself and its reflection, its 90° rotation and the reflection of that). Thus, the total number of distinct solutions is 11×8 + 1×4 = 92.
All fundamental solutions are presented below:
Solution 10 has the additional property that
no three queens are in a straight line.
Existence of solutions
Brute-force algorithms to count the number of solutions are computationally manageable for , but would be intractable for problems of , as 20! = 2.433 × 10
18. If the goal is to find a single solution, one can show solutions exist for all ''n'' ≥ 4 with no search whatsoever.
These solutions exhibit stair-stepped patterns, as in the following examples for ''n'' = 8, 9 and 10:
The examples above can be obtained with the following formulas.
Let (''i'', ''j'') be the square in column ''i'' and row ''j'' on the ''n'' × ''n'' chessboard, ''k'' an integer.
One approach
is
# If the remainder from dividing ''n'' by 6 is not 2 or 3 then the list is simply all even numbers followed by all odd numbers not greater than ''n''.
# Otherwise, write separate lists of even and odd numbers (2, 4, 6, 8 – 1, 3, 5, 7).
# If the remainder is 2, swap 1 and 3 in odd list and move 5 to the end (3, 1, 7, 5).
# If the remainder is 3, move 2 to the end of even list and 1,3 to the end of odd list (4, 6, 8, 2 – 5, 7, 9, 1, 3).
# Append odd list to the even list and place queens in the rows given by these numbers, from left to right (a2, b4, c6, d8, e3, f1, g7, h5).
For this results in fundamental solution 1 above. A few more examples follow.
* 14 queens (remainder 2): 2, 4, 6, 8, 10, 12, 14, 3, 1, 7, 9, 11, 13, 5.
* 15 queens (remainder 3): 4, 6, 8, 10, 12, 14, 2, 5, 7, 9, 11, 13, 15, 1, 3.
* 20 queens (remainder 2): 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 3, 1, 7, 9, 11, 13, 15, 17, 19, 5.
Counting solutions for other sizes ''n''
Exact enumeration
There is no known formula for the exact number of solutions for placing ''n'' queens on an board i.e. the number of
independent sets of size ''n'' in an
queen's graph. The 27×27 board is the highest-order board that has been completely enumerated. The following tables give the number of solutions to the ''n'' queens problem, both fundamental and all , for all known cases.
The number of placements in which furthermore no three queens lie on any straight line is known for
.
Asymptotic enumeration
In 2021, Michael Simkin proved that for large numbers ''n'', the number of solutions of the ''n'' queens problem is approximately
. More precisely, the number
of solutions has
asymptotic growth
where
is a constant that lies between 1.939 and 1.945. (Here ''o''(1) represents
little o notation.)
If one instead considers a
toroidal chessboard (where diagonals "wrap around" from the top edge to the bottom and from the left edge to the right), it is only possible to place ''n'' queens on an
board if
In this case, the asymptotic number of solutions is
Related problems
;Higher dimensions
:Find the number of non-attacking queens that can be placed in a ''d''-dimensional chess of size ''n''. More than ''n'' queens can be placed in some higher dimensions (the smallest example is four non-attacking queens in a 3×3×3 chess space), and it is in fact known that for any ''k'', there are higher dimensions where ''n''
''k'' queens do not suffice to attack all spaces.
;Using pieces other than queens
:On an 8×8 board one can place 32
knight
A knight is a person granted an honorary title of a knighthood by a head of state (including the pope) or representative for service to the monarch, the church, or the country, especially in a military capacity.
The concept of a knighthood ...
s, or 14
bishop
A bishop is an ordained member of the clergy who is entrusted with a position of Episcopal polity, authority and oversight in a religious institution. In Christianity, bishops are normally responsible for the governance and administration of di ...
s, 16
king
King is a royal title given to a male monarch. A king is an Absolute monarchy, absolute monarch if he holds unrestricted Government, governmental power or exercises full sovereignty over a nation. Conversely, he is a Constitutional monarchy, ...
s or 8
rooks, so that no two pieces attack each other. In the case of knights, an easy solution is to place one on each square of a given color, since they move only to the opposite color. The solution is also easy for rooks and kings. Sixteen kings can be placed on the board by dividing it into 2-by-2 squares and placing the kings at equivalent points on each square. Placements of ''n'' rooks on an ''n''×''n'' board are in direct correspondence with order-''n''
permutation matrices
In mathematics, particularly in Matrix (mathematics), matrix theory, a permutation matrix is a square binary matrix that has exactly one entry of 1 in each row and each column with all other entries 0. An permutation matrix can represent a permu ...
.
;Chess variations
:Related problems can be asked for
chess variations such as
shogi
, also known as Japanese chess, is a Strategy game, strategy board game for two players. It is one of the most popular board games in Japan and is in the same family of games as chess, Western chess, chaturanga, xiangqi, Indian chess, and janggi. ...
. For instance, the ''n''+''k'' dragon kings problem asks to place ''k''
shogi pawns and ''n''+''k'' mutually nonattacking
dragon kings on an ''n''×''n'' shogi board.
;Nonstandard boards
:
Pólya studied the ''n'' queens problem on a
toroidal ("donut-shaped") board and showed that there is a solution on an ''n''×''n'' board if and only if ''n'' is not divisible by 2 or 3.
;Domination
:Given an ''n''×''n'' board, the domination number is the minimum number of queens (or other pieces) needed to attack or occupy every square. For ''n'' = 8 the queen's domination number is 5.
;Queens and other pieces
:Variants include mixing queens with other pieces; for example, placing ''m'' queens and ''m'' knights on an ''n''×''n'' board so that no piece attacks another or placing queens and pawns so that no two queens attack each other.
;
Magic square
In mathematics, especially History of mathematics, historical and recreational mathematics, a square array of numbers, usually positive integers, is called a magic square if the sums of the numbers in each row, each column, and both main diago ...
s
:In 1992, Demirörs, Rafraf, and Tanik published a method for converting some magic squares into ''n''-queens solutions, and vice versa.
;
Latin square
Latin ( or ) is a classical language belonging to the Italic branch of the Indo-European languages. Latin was originally spoken by the Latins in Latium (now known as Lazio), the lower Tiber area around Rome, Italy. Through the expansion o ...
s
:In an ''n''×''n'' matrix, place each digit 1 through ''n'' in ''n'' locations in the matrix so that no two instances of the same digit are in the same row or column.
;
Exact cover
In the mathematical field of combinatorics, given a collection \mathcal of subsets of a set X, an exact cover is a subcollection \mathcal^ of \mathcal such that each element in X is contained in ''exactly one'' subset in \mathcal^.
One says that e ...
:Consider a matrix with one primary column for each of the ''n'' ranks of the board, one primary column for each of the ''n'' files, and one secondary column for each of the 4''n'' − 6 nontrivial diagonals of the board. The matrix has ''n''
2 rows: one for each possible queen placement, and each row has a 1 in the columns corresponding to that square's rank, file, and diagonals and a 0 in all the other columns. Then the ''n'' queens problem is equivalent to choosing a subset of the rows of this matrix such that every primary column has a 1 in precisely one of the chosen rows and every secondary column has a 1 in at most one of the chosen rows; this is an example of a generalized
exact cover
In the mathematical field of combinatorics, given a collection \mathcal of subsets of a set X, an exact cover is a subcollection \mathcal^ of \mathcal such that each element in X is contained in ''exactly one'' subset in \mathcal^.
One says that e ...
problem, of which
sudoku
Sudoku (; ; originally called Number Place) is a logic puzzle, logic-based, combinatorics, combinatorial number-placement puzzle. In classic Sudoku, the objective is to fill a 9 × 9 grid with digits so that each column, each row, and ...
is another example.
; ''n''-queens completion
:The completion problem asks whether, given an ''n''×''n'' chessboard on which some queens are already placed, it is possible to place a queen in every remaining row so that no two queens attack each other. This and related questions are
NP-complete
In computational complexity theory, NP-complete problems are the hardest of the problems to which ''solutions'' can be verified ''quickly''.
Somewhat more precisely, a problem is NP-complete when:
# It is a decision problem, meaning that for any ...
and
#P-complete. Any placement of at most ''n''/60 queens can be completed, while there are partial configurations of roughly ''n''/4 queens that cannot be completed.
Exercise in algorithm design
Finding all solutions to the eight queens puzzle is a good example of a simple but nontrivial problem. For this reason, it is often used as an example problem for various programming techniques, including nontraditional approaches such as
constraint programming
Constraint programming (CP) is a paradigm for solving combinatorial problems that draws on a wide range of techniques from artificial intelligence, computer science, and operations research. In constraint programming, users declaratively state t ...
,
logic programming
Logic programming is a programming, database and knowledge representation paradigm based on formal logic. A logic program is a set of sentences in logical form, representing knowledge about some problem domain. Computation is performed by applyin ...
or
genetic algorithm
In computer science and operations research, a genetic algorithm (GA) is a metaheuristic inspired by the process of natural selection that belongs to the larger class of evolutionary algorithms (EA). Genetic algorithms are commonly used to g ...
s. Most often, it is used as an example of a problem that can be solved with a
recursive
Recursion occurs when the definition of a concept or process depends on a simpler or previous version of itself. Recursion is used in a variety of disciplines ranging from linguistics to logic. The most common application of recursion is in m ...
algorithm
In mathematics and computer science, an algorithm () is a finite sequence of Rigour#Mathematics, mathematically rigorous instructions, typically used to solve a class of specific Computational problem, problems or to perform a computation. Algo ...
, by phrasing the ''n'' queens problem inductively in terms of adding a single queen to any solution to the problem of placing ''n''−1 queens on an ''n''×''n'' chessboard. The
induction bottoms out with the solution to the 'problem' of placing 0 queens on the chessboard, which is the empty chessboard.
This technique can be used in a way that is much more efficient than the naïve
brute-force search
In computer science, brute-force search or exhaustive search, also known as generate and test, is a very general problem-solving technique and algorithmic paradigm that consists of Iteration#Computing, systematically checking all possible candida ...
algorithm, which considers all 64
8 = 2
48 = 281,474,976,710,656 possible blind placements of eight queens, and then filters these to remove all placements that place two queens either on the same square (leaving only 64!/56! = 178,462,987,637,760 possible placements) or in mutually attacking positions. This very poor algorithm will, among other things, produce the same results over and over again in all the different
permutation
In mathematics, a permutation of a set can mean one of two different things:
* an arrangement of its members in a sequence or linear order, or
* the act or process of changing the linear order of an ordered set.
An example of the first mean ...
s of the assignments of the eight queens, as well as repeating the same computations over and over again for the different sub-sets of each solution. A better brute-force algorithm places a single queen on each row, leading to only 8
8 = 2
24 = 16,777,216 blind placements.
It is possible to do much better than this.
One algorithm solves the eight
rooks puzzle by generating the permutations of the numbers 1 through 8 (of which there are 8! = 40,320), and uses the elements of each permutation as indices to place a queen on each row.
Then it rejects those boards with diagonal attacking positions.
The
backtracking
Backtracking is a class of algorithms for finding solutions to some computational problems, notably constraint satisfaction problems, that incrementally builds candidates to the solutions, and abandons a candidate ("backtracks") as soon as it de ...
depth-first search
Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. The algorithm starts at the root node (selecting some arbitrary node as the root node in the case of a graph) and explores as far as possible al ...
program, a slight improvement on the permutation method, constructs the
search tree
In computer science, a search tree is a tree data structure used for locating specific keys from within a set. In order for a tree to function as a search tree, the key for each node must be greater than any keys in subtrees on the left, and les ...
by considering one row of the board at a time, eliminating most nonsolution board positions at a very early stage in their construction.
Because it rejects rook and diagonal attacks even on incomplete boards, it examines only 15,720 possible queen placements.
A further improvement, which examines only 5,508 possible queen
placements, is to combine the permutation based method with the early
pruning method: the permutations are generated depth-first, and
the search space is pruned if the
partial permutation
In combinatorial mathematics, a partial permutation, or sequence without repetition, on a finite set ''S''
is a bijection between two specified subsets of ''S''. That is, it is defined by two subsets ''U'' and ''V'' of equal size, and a one-to-one ...
produces a
diagonal attack.
Constraint programming
Constraint programming (CP) is a paradigm for solving combinatorial problems that draws on a wide range of techniques from artificial intelligence, computer science, and operations research. In constraint programming, users declaratively state t ...
can also be very effective on this problem.

An alternative to exhaustive search is an 'iterative repair' algorithm, which typically starts with all queens on the board, for example with one queen per column. It then counts the number of conflicts (attacks), and uses a heuristic to determine how to improve the placement of the queens. The '
minimum-conflicts'
heuristic
A heuristic or heuristic technique (''problem solving'', '' mental shortcut'', ''rule of thumb'') is any approach to problem solving that employs a pragmatic method that is not fully optimized, perfected, or rationalized, but is nevertheless ...
– moving the piece with the largest number of conflicts to the square in the same column where the number of conflicts is smallest – is particularly effective: it easily finds a solution to even the 1,000,000 queens problem.
Unlike the backtracking search outlined above, iterative repair does not guarantee a solution: like all
greedy procedures, it may get stuck on a local optimum. (In such a case, the algorithm may be restarted with a different initial configuration.) On the other hand, it can solve problem sizes that are several orders of magnitude beyond the scope of a depth-first search.
As an alternative to backtracking, solutions can be counted by recursively enumerating valid partial solutions, one row at a time. Rather than constructing entire board positions, blocked diagonals and columns are tracked with bitwise operations. This does not allow the recovery of individual solutions.
Sample program
The following program is a translation of
Niklaus Wirth
Niklaus Emil Wirth ( IPA: ) (15 February 1934 – 1 January 2024) was a Swiss computer scientist. He designed several programming languages, including Pascal, and pioneered several classic topics in software engineering. In 1984, he won the Tu ...
's solution into the
Python programming language, but does without the
index arithmetic found in the original and instead uses
lists to keep the program code as simple as possible. By using a
coroutine
Coroutines are computer program components that allow execution to be suspended and resumed, generalizing subroutines for cooperative multitasking. Coroutines are well-suited for implementing familiar program components such as cooperative task ...
in the form of a
generator function, both versions of the original can be unified to compute either one or all of the solutions. Only 15,720 possible queen placements are examined.
def queens(n: int, i: int, a: list, b: list, c: list):
if i < n:
for j in range(n):
if j not in a and i + j not in b and i - j not in c:
yield from queens(n, i + 1, a + b + + j c + - j
else:
yield a
for solution in queens(8, 0, [], [], []):
print(solution)
The following program is an implementation of Donald Knuth's informal description of the solution on Page 31, Section 7.2.2 ''Backtrack Programming'' from
The Art of Computer Programming
''The Art of Computer Programming'' (''TAOCP'') is a comprehensive multi-volume monograph written by the computer scientist Donald Knuth presenting programming algorithms and their analysis. it consists of published volumes 1, 2, 3, 4A, and 4 ...
, Volume 4B into the Python programming language.
def property(perm: list):
for k in range(0, len(perm)):
for j in range(0, len(perm)):
if j < k:
if perm perm
return False
elif abs(perm - perm k - j:
return False
return True
def extend(perm: list, n: int):
new_perm = []
for p in perm:
for i in range(0, n):
new_perm.append(p + [i])
return new_perm
def n_queens(n: int):
domain = list(range(0, n))
perm =
for i in range(n):
new_perm = list(filter(property, extend(perm, n)))
perm = new_perm
return len(perm)
In popular culture
* In the game ''
The 7th Guest'', the 8th Puzzle: "The Queen's Dilemma" in the game room of the Stauf mansion is the
de facto eight queens puzzle.
* In the game ''
Professor Layton and the Curious Village
''Professor Layton and the Curious Village'' is a puzzle video game, puzzle adventure game, adventure video game for the Nintendo DS system. It was developed and published by Level-5 (company), Level-5 in Japan and published by Nintendo worldwide. ...
'', the 130th puzzle: "Too Many Queens 5" () is an eight queens puzzle.
See also
*
Mathematical game
A mathematical game is a game whose rules, strategies, and outcomes are defined by clear mathematics, mathematical parameters. Often, such games have simple rules and match procedures, such as tic-tac-toe and dots and boxes. Generally, mathemati ...
*
Mathematical puzzle
Mathematical puzzles make up an integral part of recreational mathematics. They have specific rules, but they do not usually involve competition between two or more players. Instead, to solve such a puzzle, the solver must find a solution that sati ...
*
No-three-in-line problem
The no-three-in-line problem in discrete geometry asks how many points can be placed in the n\times n grid so that no three points lie on the same line. The problem concerns lines of all slopes, not only those aligned with the grid. It was intro ...
*
Rook polynomial
*
Costas array
In mathematics, a Costas array can be regarded geometry, geometrically as a set of ''n'' points, each at the center of a square in an ''n''×''n'' square tiling such that each row or column contains only one point, and all of the ''n''(''n''& ...
Notes
References
Further reading
*
*
*
*
*
''On The Modular N-Queen Problem in Higher Dimensions'' Ricardo Gomez, Juan Jose Montellano and Ricardo Strausz (2004), Instituto de Matematicas, Area de la Investigacion Cientifica, Circuito Exterior, Ciudad Universitaria, Mexico.
*
*
External links
*
* Eight Queens Puzzle in Turbo Pascal for CP/M
* Eight Queens Puzzle one line solution in Python
Solutions in more than 100 different programming languages(on
Rosetta Code
Rosetta Code is a wiki-based programming chrestomathy website with implementations of common algorithms and solutions to various computer programming, programming problems in many different programming languages. It is named for the Rosetta Stone ...
)
{{DEFAULTSORT:Eight Queens Puzzle
Mathematical chess problems
Enumerative combinatorics
1848 in chess
Mathematical problems