Knight’s tour
Posted June 18th, 2009 by William WillingCategories: Fun
An item in Professor Stewart’s Cabinet of Mathematical Curiosities reminded me of a puzzle I once amused myself with during a boring physics class. I wanted to create a puzzle for the school paper where you have a 4×4 grid filled with letters and you have to use the knight’s move to visit all squares in the right order so you get a sixteen-letter word.
After I picked the word, I tried to fill all squares, but soon I suspected that what I wanted wasn’t possible; I couldn’t find a way to reach all sixteen squares using a knight’s move (one square horizontal or vertical and one diagonal) without passing any square twice. Now I had a new puzzle: prove that this is impossible.
Unfortunately, I don’t have the proof I wrote back then anymore. Still, I remember some of the key parts of it and it isn’t that hard to reconstruct. I suggest you have a go at it; it’s quite a nice puzzle.
Ian Stewart asks: what is the longest path possible on a 4×4 grid? The problem I have with that question is not so much finding the answer, but knowing when to stop looking. Obviously, when you find a path that visits fifteen squares, you know that must be the longest (since we already know that sixteen is impossible). However, if you find a path that’s shorter than that, how can you be sure whether you found the longest or not? Of course, you can write a computer program that uses brute force to calculate all paths and then shows you the longest it found, but that feels like cheating.
April 1st, 2010 at 10:01 am
I know the knight’s tour puzzle as a mathematical exercise, but are there other examples of the knight’s tour having been used in combination with letters to form a word puzzle? I am translating a 19th c. German diary which contains a reference to that, and I was wondering if it was a purely German passtime in the 1880s, or if such puzzle were enjoyed in the Anglo world as well (have not been able to find any evidence thus far).
April 1st, 2010 at 5:21 pm
Actually, I don’t know any other examples of that. Whenever I encounter the knight’s tour, it’s always in it’s “pure” form. Sorry I couldn’t be of more help.