Calculating Chess Knight Moves on a n x n Board

  • Context: Undergrad 
  • Thread starter Thread starter arcnets
  • Start date Start date
  • Tags Tags
    Board Chess
Click For Summary
SUMMARY

The discussion centers on calculating the maximum number of moves a chess knight can make on an n x n board without revisiting any square. The established values for m(n) are as follows: m(0) = 0, m(1) = 0, m(2) = 0, m(3) = 2, m(4) = 5, m(5) = 10, m(6) = 17, m(7) = 24, and m(8) = 35. Participants suggest experimenting with a 9x9 board, anticipating that the knight can exceed 35 moves. The discussion also raises questions about the knight's movement on non-square m x n boards.

PREREQUISITES
  • Understanding of chess knight movement mechanics
  • Familiarity with combinatorial mathematics
  • Basic programming skills for simulating knight moves
  • Knowledge of algorithmic problem-solving techniques
NEXT STEPS
  • Implement a simulation of knight moves on an n x n chessboard using Python
  • Research combinatorial optimization techniques for pathfinding
  • Explore graph theory concepts related to knight's tour problems
  • Analyze the implications of board dimensions on knight movement patterns
USEFUL FOR

Mathematicians, computer scientists, chess enthusiasts, and anyone interested in algorithmic challenges related to pathfinding and combinatorial problems.

arcnets
Messages
493
Reaction score
0
Hi all,
I found this problem in a Martin Gardner book. You have a chess board of n x n squares. How many moves m(n) can a chess knight make on this board without crossing or touching its own path?

m(0) = 0
m(1) = 0
m(2) = 0
m(3) = 2
m(4) = 5
m(5) = 10
m(6) = 17
m(7) = 24
m(8) = 35

http://home.t-online.de/home/b_c.kuss/mgard.JPG

Anyone know how to continue this? Thanks!
 
Last edited:
Mathematics news on Phys.org
Make a 9x9 board, and try it. You should be able to make more than 35 moves.
 
How does it change also for a m x n board?
 

Similar threads

  • · Replies 25 ·
Replies
25
Views
5K
  • · Replies 5 ·
Replies
5
Views
3K
Replies
4
Views
6K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 15 ·
Replies
15
Views
2K
  • · Replies 17 ·
Replies
17
Views
8K
  • · Replies 125 ·
5
Replies
125
Views
21K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 68 ·
3
Replies
68
Views
13K
Replies
4
Views
3K