Data Mining the Web Reveals What Makes Puzzles Hard For Humans 44
KentuckyFC (1144503) writes "The question of what makes puzzles hard for humans is deceptively tricky. One possibility is that puzzles that are hard for computers must also be hard for people. That's undoubtedly true and in recent years computational complexity theorists have spent some time trying to classify the games people play in this way (Pac Man is NP hard, by the way). But humans don't always solve problems in the same way as computers because they don't necessarily pick the best method or even a good way to do it. And that makes it hard to predict the difficulty of a puzzle in advance. Cognitive psychologists have attempted to tease this apart by measuring how long it takes people to solve puzzles and then creating a model of the problem solving process that explains the data.
But the datasets gathered in this way have been tiny — typically 20 people playing a handful of puzzles. Now one researcher has taken a different approach by mining the data from websites in which people can play games such as Sudoku. That's given him data on the way hundreds of players solve over 2000 puzzles, a vast increase over previous datasets and this has allowed him to plot the average time it takes to finish different puzzles. One way to assess the difficulty of Sudoku puzzle is in the complexity of each step required to solve it. But the new work suggests that another factor is important too — whether the steps are independent and so can be attempted in parallel or whether the steps are dependent and so must be tried in sequence, one after the other. A new model of this puzzle-solving process accurately reproduces the time it takes real humans to finish the problems and that makes it possible to accurately predict the difficulty of a puzzle in advance for the first time. It also opens the way for other studies of human problem solving using the vast datasets that have been collected over the web. Indeed work has already begun on the Sudoku-like puzzle game, Nurikabe."
But the datasets gathered in this way have been tiny — typically 20 people playing a handful of puzzles. Now one researcher has taken a different approach by mining the data from websites in which people can play games such as Sudoku. That's given him data on the way hundreds of players solve over 2000 puzzles, a vast increase over previous datasets and this has allowed him to plot the average time it takes to finish different puzzles. One way to assess the difficulty of Sudoku puzzle is in the complexity of each step required to solve it. But the new work suggests that another factor is important too — whether the steps are independent and so can be attempted in parallel or whether the steps are dependent and so must be tried in sequence, one after the other. A new model of this puzzle-solving process accurately reproduces the time it takes real humans to finish the problems and that makes it possible to accurately predict the difficulty of a puzzle in advance for the first time. It also opens the way for other studies of human problem solving using the vast datasets that have been collected over the web. Indeed work has already begun on the Sudoku-like puzzle game, Nurikabe."
Sudoku's complexity (Score:2)
Isn't sudoku extraordinarily easy for a computer? I think it would be more interesting to investigate human problem solving strategies in opposite scenarios, games that humans are really good at but that are nearly intractable for computers.
Re:Sudoku's complexity (Score:5, Interesting)
> Isn't sudoku extraordinarily easy for a computer?
Yes, "solving" sudoku is extremely trivial. Few years back wrote less then 100 lines of C/C++ code to solve any Sudoku using back tracking. Solves any 9x9 sudoku in less then a second.
The more interesting question is how players use the advanced deduction / induction such as x-wing, swordfish, etc.
> games that humans are really good at but that are nearly intractable for computers.
You mean like asking a person to identity the movie / actors / plot from a 5 or 10 second movie clip?? ;-)
Computers completely suck at meta-searching through large amounts of "noise".
They are _extremely_ good when you have tons of "signal" and want to find that 1 special entry.
Re:Sudoku's complexity (Score:5, Interesting)
Generalized (NxN) sudoku is NP-complete. That's the only sense in which any puzzle is computationally intractable.
This is very fascinating work, but I am skeptical. I design puzzles like this, with computer assistance, and automatically gauging how difficult a puzzle is seems to be basically impossible. The fundamental problem is that the logical structure of a puzzle is not in itself sufficient to gauge difficulty. A huge amount of it is in the presentation, and how the player conceptualizes the puzzle, and how much of the problem can be handled automatically by visual processes. There are puzzles with trivial game trees that I have watched players get totally lost in, because the game tree is not apparent in the puzzle manifestation.
If this research addresses this problem, I will be very impressed.
Re: (Score:2)
Well, the ARE right about Sudoku. I can tell you from experience that, sometimes, just looking at a board is not enough. For some configurations of some types of puzzles (sudoku being a great example), you just have to mentally go through the possibilities until you find one that takes you a little further along. If there are 10 possible next steps instead of just one, you only have to search, on average, 1/10 the solution space to get your next move. These results are actually quite obvious once you th
Re:Sudoku's complexity (Score:4, Insightful)
He's looking at both complexity of the move and how many possible moves there are at each step.
It is much easier to find a valid move and solve a puzzle if there are 10 opening moves.
It is much harder if there is only a single path of 20 moves in a particular sequence.
A puzzle with 20 steps that must be done in order is much much harder than a puzzle with 20
steps that can be done in any order just like it would be much harder to solve a word search if
you had to find the words in order.
This should be pretty accurate as a truly serial puzzle would be the sum of time to solve each
step while a puzzle with parallel steps would be the average time to discover one of the possible
next moves. On average if there is more than one solution on a step then finding one of the
many solutions should be faster than finding the one solution.
Re:Sudoku's complexity (Score:4, Interesting)
It's not just that. The puzzle solvers essentially adopt their own rules for what consistutes a valid solution step.
Once I started completing most five stars puzzles in twelve minutes or less, I started to mainly work the "insane" category. My preferred method is to logically eliminate a single digit placement: this digit can't go here in this box. In the insane puzzles, one often gets to a place where are few digit placements one can reasonably crack with an inference chain without going more than three levels deep.
At that point, it's pretty easy to get completely stuck for ten minutes looking in all the wrong places. That same situation can often be "solved" in under a minute with a four colour pen and the willingness to posit and backtrack. Normally this is against my personal code.
Once upon a time I compiled Knuth's dancing links and threw some "hardest ever" puzzles at it that came up in a quick Google search. One of the first such puzzles I tried solved without a single backtrack step: at each point where the algorithm made a guess, it happened to guess right. There were only three or four or five such junctures of valence 2 or 3. I think I had slightly modified how it sorts the list based on my own intuition about the potency of guesswork, but still, it made a completely mockery of the whole "difficulty" notion. Purportedly one of the hardest of all puzzles (by a certain metric) and Dancing Links goes Rain Man without so much as scuffing its eraser.
When I challenged myself to solve five star puzzles in under ten minutes, there was a complex dance inside my mind to keep track of where I'd shaken the tree already, and what part of the tree needed to be revisited based on recently completed digits. At the slightly faster pace, my mistake production would skyrocket: somehow my double-checking circuit and my "what next" circuit became competitive.
Also, the critical junctures became too thin on the ground, and the punishment for my errors too great, so I lost interest in pushing it any further. It was always for me an excercise in observing my own solution strategies and mental capacities/incapacities.
I think the only way a puzzle-setter can get consistent solution times for a hardness category is by patiently training the puzzle solvers to appoach the task in a certain way, rather than just doing their own thing. I certainly knew with each puzzle setter that I could exploit my familiarity with previous puzzles set at that level of difficulty if I followed the main sequence.
From time to time I would spot an advanced inference early, and then the puzzle would melt away posing no further difficulty whatsoever.
Re: (Score:3)
Yup, see http://perl.abigail.be/Talks/S... [abigail.be] for an interesting example of how a Sudoku puzzle can be solved via Regex :)
Re: (Score:3)
The "they" in the quoted line refers to people, not computers. It's the people picking the method (poorly).
The issue with Sudoku is that easy and difficult puzzles can have the same number of boxes to fill.
Re: (Score:2)
Value (Score:5, Interesting)
Somewhere I read an article by a guy who makes and sells Sudoku puzzles to newspapers. He explained that the value of providing the puzzle was near zero, since anyone with a computer could easily generate thousands of them, and anyone without a computer could get them from any number of sources. The value of his service, and the reason newspapers paid him to provide the puzzle, he said, was that he provided an accurate difficulty estimate to the puzzle. People attempting, and failing to solve, a difficult puzzle rated "easy", and people quickly solving an easy puzzle rated "difficult", were dissatisfied, and complained. People that had the experience they expected -- easy puzzles quickly solved, hard puzzles solved only with difficulty -- were much more satisfied.
The result was, newspaper editors got fewer complaints using his puzzles than they did from his competitors, so they bought from him.
He said he spent far more time tweaking his difficulty-rating algorithm than he did his software that generated the puzzles themselves -- since that was what kept him in business.
Re: (Score:3)
Absolutely spot on.
I wrote a Calcudoku generator/solver a while ago (now in heavy use at http://www.calcudoku.org/ [calcudoku.org] and spent a _lot_ of effort on the difficulty rating bits (and still know there is room for improvement).
One idea that isn't in there yet is to somehow incorporate the distance between the solving steps: if the next logical step is in a cell very near the previous one, you see it more quickly, hence the puzzle is easier.
Re: (Score:1)
Medicine is such a dismal science, making overarching, over-generalising conclusions which help nobody but the mythical lowest common denominator, yet it's managed to interfere with almost every aspect of academic and commercial life with its simplistic measures.
I would argue that nothing has done more to contribute toward the dumbing down of the West than its obsession with statistics over logic.
FTFY.
'cause really psych hasn't made any sweeping changes to anything, but 'medical science' has been fucking with our food and drug intake for the past century and created some of the worst changes in the global economy.
Nurikabe (Score:3)
Indeed work has already begun on the Sudoku-like puzzle game, Nurikabe."
Great. Another time-consuming addictive game I have to play. Thanks, slashdot!
Re: (Score:2)
The nurikabe is a Yokai, or spirit, from Japanese folklore. It manifests as a wall that impedes or misdirects walking travelers at night.
Well, the name sounds apt to me! ;)
Re: (Score:2)
Don't worry, there's 2048 [github.io] other games to consume your time.
Some Pac-Man ROMs had clear solutions (Score:5, Interesting)
Due to the lack of enough (or any?) use of a random-event-generator, some early versions of the original Pac-Man arcade game had "canned solutions" that worked for every level. After the hardest level, the hardest level just repeated itself forever. One version ended at the "5th key" and another at the "9th key."
I say "some early versions" - it might be "all versions." I don't know if there were any other versions of the official Pac Man arcade game back in its heyday.
Re: (Score:3, Informative)
Tedious != Difficult (Score:3)
I like this research area but the researchers need to dramatically improve their definitions and measures of 'difficulty'
parallel steps, by the researchers definition, increase ***complexity*** which is incorrect
parallel steps increase the length of time required, b/c you must use **trial and error** but that is **not more complex**
making a game more difficult by making it more tedious is bad game design...the challenges must increase in complexity as the player progresses
tedious games are like homework...no one plays them
Re: (Score:3)
I read it the other way if applied to video games. A sequence of steps is a linear game and boring and not really a game as much as a movie with grind. Parallel steps are sandbox, open world.
Re: (Score:2)
hi Carewolf...interesting...
"trial and error" is only relevant when there **is a goal to try for**
by definition, a "sandbox" game isn't programmed to have accomplishments (of course you can have both in one game ex: GTA)
so a "sandbox" game *cant* have goals...or it wouldn't be "sandbox"
part of this is, gaming became so reductive with the introduction of the "cut scene"...and just lazy game design
Re: (Score:2)
I though the Nintendo games (Super Mario 64, Ocarina of Time) started off in parallel steps as you explored each level to find keys and unlock other levels. But eventually after figuring out the optimum sequence of completing levels (get the flying hat first, then get the invisibility hat, get the ten keys, get the skulltulas), then the game becomes linear.
Human vs computer (Score:5, Insightful)
People do not do well with recursive. People do well with hidden simple pattern recognition. Give us a simple pattern, and we can recognize it everywhere. The simplest example of this is optical character recognition, i.e. recognizing letters in a picture. In part because there are infinite number of fonts, but humans can recognize them all, because we look for the pattern. Computers have major issues with this - and to get any real accuracy, do it slower than people do.
Where does Rubik's Cube fit in all of this? (Score:1)
Once in a great while, I drag it out and try yet again to solve it. (Sigh)
PS Yeah I know there are books that tell how to do it. That's not what I'm after.
Re: (Score:2)
I prefer the engineer's method. It involves a screwdriver.
Re: (Score:3)
It's not too bad until you get close to the end. That's where it takes the longest to work out a set of useful moves. (e.g. sequences which ultimately affects just a few cubes while leaving the others in place) for the end-game. Keep at it, make lots of notes, and you'll work out your own solution in no time.
Re: (Score:2)
Rubik's cubes are easy. You can solve yours in 3 seconds. [youtube.com]
Pac Man (Score:2)
Pac Man is NP hard, by the way
So you mean each time a level is passed, a NP hard problem is solved. I'm a genius!
what can we infer about puzzles easy for humans, h (Score:2)
Considering the information in TFA, can we infer anything about what type of puzzles would be easy for humans, but hard for computers? Traditional captchas were an attempt at that, but they don't work that well.
So far, I've come up with only one puzzle our wetware does much better than software - spotting attractive members of the opposite sex. That's what we use in our captchasystem.
Re: (Score:2)
I would think crossword puzzles, especially the kind that uses puns, etc.
Re: (Score:2)
Has anybody tried to hook Watson up to a crossword puzzle? Its Jeopardy-answering skills should give it a substantial jump on the puzzle, and combined with the combinatorial crunching power of a computer should be able to narrow down a lot of places to the point where it can just plain guess. Which is what a lot of human players have to do when faced with overly "clever" clues anyway.
Some puzzles have extra thematic elements that would make it tricky for a computer (such as misspellings), though a lot of th
Extension to games... (Score:4, Interesting)
I have to wonder how/if this research translates into the games arena. Recently, there have been several attempts to make games playable by humans but which negate the computer's advantage of massive search. These games include Arimaa [boardgamegeek.com], Octi [boardgamegeek.com], and Havannah [boardgamegeek.com]. One speculates whether it would be possible to design a game that is equally difficult, and a fair contest, between humans and computers.
I doubt it. (Score:1)
Not really. I would imagine something like a riddle would be easier for a human than a computer. On a more mundane level, computers, even with robotic bodies, so far can't interact with the world we live in as easily as humans do. Yes, they can do some things we can't but the reverse is also true.
Data Mining Sudoku Websites (Score:1)
Depends on the human (Score:3)
Different humans use different approaches. I knew a physics professor when rubric's cube first came out. He looked at it without touching it, wrote some stuff on paper, then picked it up and solved it instantly. Some humans will know the "key" to a puzzle, others won't.