Place a knight on an empty chessboard. Can it travel to every square exactly once, making only legal knight moves â those distinctive L-shaped hops of two squares in one direction and one square perpendicular?
The question is ancient: Islamic scholars posed it in the 9th century, and Euler gave the first systematic analysis in 1759. The answer is yes â on a standard board there are more than 26 trillion distinct closed tours (ones that end one knight-hop from the start).
But sheer existence is not the same as finding one efficiently. Brute-force search on even a modest board quickly becomes astronomical. This is where a surprisingly simple greedy rule steps in â one that almost always works, and whose success touches some of the deepest ideas in combinatorics and graph theory.
Comments
Loading comments...