Friday, March 27, 2015

Why is Klondike solitaire so popular?

When I was in middle school I was trying to play Solitaire when Dad took the deck from me and showed me what the casinos did. You paid so many dollars for the deck, you got to play through just once, and they paid you a dollar for every exposed card. I looked at those numbers and figured I wanted no part of that game. I don't recall the initial cost anymore, and it doesn't matter for my life anyway.

I needed some practice with object-oriented aspects of python, so I set myself the task of writing that Klondike solitaire player I threatened. Some of what I found is about what you'd expect to see. I don't claim my algorithm is the best; one could be more strategic, especially as you learn what's in the deck. But it's an OK first approximation.

Yes, of course I wrote it so you can vary the number of ranks, number of piles, number of suits, and so on. Why bother otherwise?

I ran 10000 games with the different parameters. I kept 4 suits and 2 colors, but had 13 ranks and 7 piles (standard) and also 13 ranks with 6 piles, and 3 variants of 14 ranks (Tarot deck): 6, 7 and 8 piles. You expect that the more piles there are, the more cards are buried and the more will be left unplayed at the end of the game. And so it was.

With the usual game it looks like you win about 1 time in 20. (BTW, these are from random number generators, and are not exact.)












TypeTimes you winTime < 5 cards
Standard485/100001681/10000
13ranks+6piles792/100003210/10000
Tarot+6516/100002702/10000
Tarot+7247/100001319/10000
Tarot+8136/10000452/10000

That's the easy part. What's a bit harder is quantifying the "frustration factor": how close you feel you got to winning. I figure the oftener you feel like you almost won, the more likely you are to start a new game--provided you actually do win from time to time. And the game can't be too easy. I'm not sure how to quantify that either. But from the fact that the standard game uses 7 piles instead of 6, I suspect that 6 makes the game feel too easy.

Notice the spike near 0 for the standard game. Most of the time you lose by a significant amount, but you come close oftener. I list the numbers in the table above, but I show the plots below.

For what it's worth, even a game with 2 suits and 3 ranks (and 2 piles) doesn't always wind up with every card face up. And the game above goes through the deck repeatedly.

No comments: