Wrong Division
I am fascinated by web statistics … the information that you can pull out of the server logs that give you some idea of the usage patterns on your site. After several years of working on PC software and its endless marketing wars over features you could never actually convince yourself that anybody cared about, an opportunity to build applications on a platform that actually recorded what got used and when was an intoxicating invitation.
So I often find myself digging down into my web stats to find out how (sometimes if) people use my Puzzle applications. I have learned a few things:
| - | I am helping a Very Large number of people turn the tables on the Jumble. Seriously. Hundreds a day sometimes. This surprises me, since the page was really just intended to implement Jon Bentley’s nifty algorithm for unscrambling words … the Puzzle itself is perfectly suited to the playful side of the human mind … devoting algorithm design time to the problem is only useful if it helps to teach how to think through trickier problems. | |||
| - | Scramble Squares puzzles are Very Popular although almost Nobody wants to deal with a puzzle solver that requires them to do any work. Users either get their answer on the first or second try, or else they frantically tweak their initial entries twenty different ways, and then email me to ask if I have the answer to their puzzle. In other words, teach a man to fish, and he’ll sadly shake his head and then ask you for a fish. | |||
| - | Cryptograms. My Solver works with what the American Cryptogram Association (ACA) calls ‘aristocrats’, which are simple letter-substitution encodings of messages that otherwise maintain the word divisions and punctuation of the original message. In their bimonthly magazine “The Cryptogram” the ACA will publish 25 Aristocrats, and the Solver (based in PHP) will usually manage to solve about half of the set … the ACA cons are submitted by members, many of whom are well onto what makes for a difficult puzzle, and the Solver will bail on anything that threatens to consume too much processing time. Its Perl-based big brother will handle them all, sometimes with a little hand-holding, so let me know if you’re stumped.
People using the Solver are often seized with the desire to feed it with a stream of hundreds of random characters from their keyboards (without spaces or other word divisions) looking for, I don’t know, messages from the Other Side expressed as a sort of systematically encoded Automatic Writing? Others are fond of submitting single encoded words with the implicit question of (I guess) ‘What word does it encode?’ The explicit answer is ‘What word doesn’t it encode?’ … Lately, someone has been sending in lots of ‘Patristocrats’. These puzzles are encoded like Aristos, but all punctuation and natural word divisions have been removed. For example, a quote from Douglas Adams, encoded as an Aristo:
The Solver will work through this almost instantly ("There is a theory which states that if ever anybody discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable. There is another theory which states that this has already happened.") But a Patristocrat version of the same puzzle lacks any punctuation, and groups the letters in even groups:
The Solver will look at this a long time with the single computer-brain thought, "Man! That’s a lot of 5-letter words!" Although there are crypto-wonks out there who will giggle at my naivete (weirdos), I have thought about this a lot and I just have not come up with a fast way to solve Patristocrats. If the message is long enough, basic letter-frequency analysis will get you most of the way there (figure out the first-, second-, and third-most-used letters and assign these to ‘e’, ‘t’, and ‘a’, and you’re off to the races), but otherwise the words do very little to reveal themselves. |


