Skip to content
Surf Wiki
Save to docs
science/mathematics

From Surf Wiki (app.surf) — the open knowledge base

Eight queens puzzle

Mathematical problem set on a chessboard

Eight queens puzzle

Summary

Mathematical problem set on a chessboard

| tright | ||||||ql|_| ||||ql||||__ |||||||ql|__ |ql|||||||__ ||||||||ql ||ql|||||| |||||ql|||__ |||ql|||||__ |The only symmetrical solution to the eight queens puzzle (up to rotation and reflection)

The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard 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 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 numbers 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 Max Bezzel published the eight queens puzzle in 1848. Franz Nauck published the first solutions in 1850. Nauck also extended the puzzle to the n queens problem, with n queens on a chessboard of n×n squares.

Since then, many mathematicians, including Carl Friedrich Gauss, have worked on both the eight queens puzzle and its generalized n-queens version. In 1874, S. Günther proposed a method using determinants to find solutions. J.W.L. Glaisher refined Gunther's approach.

In 1972, Edsger Dijkstra used this problem to illustrate the power of what he called structured programming. He published a highly detailed description of a depth-first 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, 88) possible combinations. Generating permutations 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 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:

| center | ||||ql||||__ |||||||ql|__ |||ql|||||__ ||||||||ql ||ql|||||| |||||ql|||__ |ql|||||||__ ||||||ql||__ |Solution 1 | center | |||||ql|||__ ||ql||||||__ ||||ql||||__ |||||||ql|__ |||ql|||||__ ||||||||ql ||||||ql|| |ql|||||||__ |Solution 2 | center | ||||ql||||__ ||ql||||||__ |||||||ql|__ |||ql|||||__ ||||||ql||__ ||||||||ql |||||ql||| |ql|||||||__ |Solution 3 | center | ||||ql||||__ ||||||ql||__ ||||||||ql |||ql||||| |ql|||||||__ |||||||ql|__ |||||ql|||__ ||ql||||||__ |Solution 4 | center | |||ql|||||__ ||||||ql||__ ||||||||ql |ql||||||| ||||ql||||__ |||||||ql|__ |||||ql|||__ ||ql||||||__ |Solution 5 | center | |||||ql|||__ |||ql|||||__ ||||||||ql ||||ql|||| |||||||ql|__ |ql|||||||__ ||||||ql||__ ||ql||||||__ |Solution 6 | center | |||||ql|||__ |||||||ql|__ ||||ql||||__ |ql|||||||__ |||ql|||||__ ||||||||ql ||||||ql|| ||ql||||||__ |Solution 7 | center | ||||ql||||__ |ql|||||||__ |||||ql|||__ ||||||||ql ||||||ql|| |||ql|||||__ |||||||ql|__ ||ql||||||__ |Solution 8 | center | |||ql|||||__ ||||||ql||__ ||||ql||||__ |ql|||||||__ ||||||||ql |||||ql||| |||||||ql|__ ||ql||||||__ |Solution 9 | center | ||||||ql||__ ||ql||||||__ |||||||ql|__ |ql|||||||__ ||||ql||||__ ||||||||ql |||||ql||| |||ql|||||__ |Solution 10 | center | ||||ql||||__ |||||||ql|__ |ql|||||||__ ||||||||ql |||||ql||| ||ql||||||__ ||||||ql||__ |||ql|||||__ |Solution 11 | center | ||||||ql||__ ||||ql||||__ |||||||ql|__ |ql|||||||__ ||||||||ql ||ql|||||| |||||ql|||__ |||ql|||||__ |Solution 12

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 × 1018. 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: | tleft | ||||ql||||__ |||||||ql|__ |||ql|||||__ ||||||||ql ||ql|||||| |||||ql|||__ |ql|||||||__ ||||||ql||__ | Staircase solution for 8 queens | tleft | |||||||ql|| |||ql|||||| ||||||ql||| ||ql||||||| |||||ql|||| |ql|||||||| |||||||||ql ||||ql||||| ||||||||ql| | Staircase solution for 9 queens | tleft | |||||ql|||||__ ||||||||||ql ||||ql|||||| |||||||||ql|__ |||ql|||||||__ ||||||||ql||__ ||ql||||||||__ |||||||ql|||__ |ql|||||||||__ ||||||ql||||__ | Staircase solution for 10 queens

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

  1. 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.
  2. Otherwise, write separate lists of even and odd numbers (2, 4, 6, 8 – 1, 3, 5, 7).
  3. If the remainder is 2, swap 1 and 3 in odd list and move 5 to the end (3, 1, 7, 5).
  4. 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).
  5. 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 n × n board i.e. the number of independent sets of size n in an n × n 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.

n123456789101112131415161718192021222324252627
fundamentalall
11
00
00
12
210
14
640
1292
46352
92724
3412,680
1,78714,200
9,23373,712
45,752365,596
285,0532,279,184
1,846,95514,772,512
11,977,93995,815,104
83,263,591666,090,624
621,012,7544,968,057,848
4,878,666,80839,029,188,884
39,333,324,973314,666,222,712
336,376,244,0422,691,008,701,644
3,029,242,658,21024,233,937,684,440
28,439,272,956,934227,514,171,973,736
275,986,683,743,4342,207,893,435,808,352
2,789,712,466,510,28922,317,699,616,364,044
29,363,495,934,315,694234,907,967,154,122,528

The number of placements in which furthermore no three queens lie on any straight line is known for n \leq 25 .

Asymptotic enumeration

In 2021, Michael Simkin proved that for large numbers n, the number of solutions of the n queens problem is approximately (0.143n)^n. More precisely, the number \mathcal{Q}(n) of solutions has asymptotic growth \mathcal{Q}(n) = ((1 \pm o(1))ne^{-\alpha})^n where \alpha 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 n \times n board if n \equiv 1,5 \mod 6. In this case, the asymptotic number of solutions is T(n) = ((1+o(1))ne^{-3})^n.

Exercise in algorithm design

This animation illustrates [[backtracking]] to solve the problem. The ''i''th queen is placed in the ''i''th row of the chessboard, in a column that is known not to cause conflict. If a column is not found the program returns to the last good state and then tries a different column.

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, logic programming or genetic algorithms. Most often, it is used as an example of a problem that can be solved with a recursive algorithm, 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 process can be made more efficient by applying the observation that each column of the chessboard must contain exactly one queen, and restricting the positions at which the algorithm tries adding the ith queen to the ith row of the chessboard, in columns that are not already attacked by other queens. These choices significantly reduce the number of placements that need to be tried, allowing the algorithm to find all solutions on an 8\times 8 chessboard in a time so short as to appear instantaneous.{{cite book

min-conflicts]] solution to 8 queens

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 – 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'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 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.

PYTHON
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 + [j], b + [i + j], c + [i - 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]], Volume 4B into the Python programming language.<ref>{{Cite book |last=Knuth |first=Donald Ervin |title=The art of computer programming. volume 4B part 2: Combinatorial algorithms |date=2023 |publisher=Addison-Wesley |isbn=978-0-201-03806-4 |location=Boston Munich}}</ref>
PYTHON3
def property(perm: list) -> bool:
    for k in range(0, len(perm)):
        for j in range(0, len(perm)):
            if j < k:
                if perm[k] == perm[j]:
                    return False
                elif abs(perm[k] - perm[j]) == 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) -> 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)

Notes

References

References

  1. [[W. W. Rouse Ball]] (1960) "The Eight Queens Problem", in ''Mathematical Recreations and Essays'', Macmillan, New York, pp. 165–171.
  2. [[Ole-Johan Dahl. O.-J. Dahl]], [[E. W. Dijkstra]], [[C. A. R. Hoare]] ''Structured Programming'', Academic Press, London, 1972 {{ISBN. 0-12-200550-3, pp. 72–82.
  3. Bo Bernhardsson. (1991). "Explicit Solutions to the N-Queens Problem for All N". ACM SIGART Bulletin.
  4. (1969-03-01). "Constructions for the Solution of the m Queens Problem". Mathematics Magazine.
  5. "The Q27 Project".
  6. Sloman, Leila. (2021-09-21). "Mathematician Answers Chess Problem About Attacking Queens".
  7. Simkin, Michael. (2021-07-28). "The number of $n$-queens configurations".
  8. Luria, Zur. (2017-05-15). "New bounds on the number of n-queens configurations".
  9. (2021-09-16). "The $n$-queens problem".
  10. J. Barr and S. Rao (2006), The n-Queens Problem in Higher Dimensions, [[Elemente der Mathematik]], vol 61 (4), pp. 133–137.
  11. Martin S. Pearson. "Queens On A Chessboard – Beyond The 2nd Dimension".
  12. Chatham, Doug. (1 December 2018). "Reflections on the n +k dragon kings problem". Recreational Mathematics Magazine.
  13. (1997). "Domination and irredundance in the queens' graph". Discrete Mathematics.
  14. Weakley, William D.. (2018). "Graph Theory: Favorite Conjectures and Open Problems – 2". Springer.
  15. "Queens and knights problem".
  16. (2009). "A survey of known results and research areas for '''n'''-queens". Discrete Mathematics.
  17. O. Demirörs, N. Rafraf, and M.M. Tanik. Obtaining n-queens solutions from magic squares and constructing magic squares from n-queens solutions. Journal of Recreational Mathematics, 24:272–280, 1992
  18. (6 July 2022). "The ''n''-queens completion problem". Research in the Mathematical Sciences.
  19. [http://citeseerx.ist.psu.edu/viewdoc/download;jsessionid=4DC9292839FE7B1AFABA1EDB8183242C?doi=10.1.1.57.4685&rep=rep1&type=pdf A Polynomial Time Algorithm for the N-Queen Problem] by Rok Sosic and Jun Gu, 1990. Describes run time for up to 500,000 Queens which was the max they could run due to memory constraints.
  20. (1992-12-01). "Minimizing conflicts: a heuristic repair method for constraint satisfaction and scheduling problems". Artificial Intelligence.
  21. (October 1994). "Efficient local search with conflict minimization: a case study of the n-queens problem". IEEE Transactions on Knowledge and Data Engineering.
  22. (February 2002). "Bit-vector encoding of n-queen problem". ACM SIGPLAN Notices.
  23. Richards, Martin. (1997). "Backtracking Algorithms in MCPL using Bit Patterns and Recursion".
  24. Wirth, Niklaus. (1976). "Algorithms + Data Structures = Programs". Prentice-Hall.
  25. Wirth, Niklaus. (2012). "Algorithms and Data Structures".
  26. Knuth, Donald Ervin. (2023). "The art of computer programming. volume 4B part 2: Combinatorial algorithms". Addison-Wesley.
  27. DeMaria, Rusel. (Nov 15, 1993). "The 7th Guest: The Official Strategy Guide". Prima Games.
  28. "ナゾ130 クイーンの問題5". ゲームの匠.
Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about Eight queens puzzle — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report