+ All Categories
Home > Internet > 5 Queens Problem on 8x8 Chessboard With Easy Solutions

5 Queens Problem on 8x8 Chessboard With Easy Solutions

Date post: 02-Jul-2015
Category:
Upload: adam-biju
View: 370 times
Download: 2 times
Share this document with a friend
Description:
The simplest mechanism to find a solution for placing 5 queens on an 8x8 chess board is to randomly select two columns and swap them. You no need to trick for any code or go behind a fuzzy algorithm. Simply swap queens over the board to find solutions.
11
THE 5 QUEENS TACTICS It's a little classic puzzle with 5 queens on an 8x8 chess board. The objective is to place the all the five queens on to the board without attacking each other.
Transcript
Page 1: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

THE 5 QUEENS TACTICS

It's a little classic puzzle with 5 queens on an 8x8 chess board. The objective is to place the all the five queens on to

the board without attacking each other.

Page 2: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

● The Five queens puzzle has 65 distinct solutions.

● There can be many possible ways to sought out the solutions.

● One such easy method would be the following, where one can easily drag the queens over the board and find the solution.

● For those not familiar with chess pieces, the queen is able to attack any square on the same row, any square on the same column, and also any square on either of the diagonals

Page 3: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

Take a 8x8 chess board, place the first queen on the first row, first column, first cell.

Page 4: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

Now, take the second queen (Q2) place it on the second row, first column, first cell. Verify, the queens attack each other.

Now, move one step forward. Place it on the second cell and verify.

Not Matched!

Again move one step forward and verify. Perfectly positioned.

Page 5: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

Now, lets place the 3rd queen. As we did earlier, place the queen on the third row, first column and keep dragging until you find the position where, the Q3 is not attacked by Q1 and Q2.

Page 6: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

Similarly, let us find the positions of Q4 and Q5.

Page 7: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

We obtain the first solution as simple as that. Perfectly positioned all five queens on board without attacking each other.

Page 8: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

Continue the process moving the Q1 to the second column in the first row, and try placing the other queens dragging them on the respective cells on the board.

By doing so, I had sort out 15 more solutions on the 8x8 board with 5 queens.

Page 9: 5 Queens Problem on 8x8 Chessboard With Easy Solutions
Page 10: 5 Queens Problem on 8x8 Chessboard With Easy Solutions
Page 11: 5 Queens Problem on 8x8 Chessboard With Easy Solutions

Want some more challenge?

Play 5 Queens Puzzle Now!

This is some what tricky as you are about to find a solution to cover all squares placing all 5 queens on board.

Sponsored by Funmin.com


Recommended