Live data from Hacker News

Hacking “Chutes and Ladders” using R

ethanmarkowitz.com

11–17 of 17 posts

Re: Hacking “Chutes and Ladders” using R

#11
post #2

That is just the analysis I think about doing every time I play Chutes and Ladders with my daughter. I think "I should just simulate this game, it would be much more fun."

Well, just take notes while you play then. ;) You're already simulating it by hand. How do you think people ran simulations before there were electronic computers?

Re: Hacking “Chutes and Ladders” using R

#12
post #10

I don't want to knock the article, since this kind of exploration is fun and well written blogs are always a joy to read. But knowing some statistics, the entire of Snakes and Ladders is an absorbing markov chain [1] and can be very quickly analyzed as such without having to resort to sampling. Random sampling is easy but take a step back and the entire state space is an integer in [1,100]. (Actually there are fewer…

He mentioned in the article that you can use Markov chains.

Re: Hacking “Chutes and Ladders” using R

#13
post #10

I don't want to knock the article, since this kind of exploration is fun and well written blogs are always a joy to read. But knowing some statistics, the entire of Snakes and Ladders is an absorbing markov chain [1] and can be very quickly analyzed as such without having to resort to sampling. Random sampling is easy but take a step back and the entire state space is an integer in [1,100]. (Actually there are fewer…

The article links two to Markov chain analyses, at http://datagenetics.com/blog/november12011/ and http://math.uchicago.edu/~may/REU2014/REUPapers/Hochman.pdf .

Re: Hacking “Chutes and Ladders” using R

#14
post #13
post #10

I don't want to knock the article, since this kind of exploration is fun and well written blogs are always a joy to read. But knowing some statistics, the entire of Snakes and Ladders is an absorbing markov chain [1] and can be very quickly analyzed as such without having to resort to sampling. Random sampling is easy but take a step back and the entire state space is an integer in [1,100]. (Actually there are fewer…

The article links two to Markov chain analyses, at http://datagenetics.com/blog/november12011/ and http://math.uchicago.edu/~may/REU2014/REUPapers/Hochman.pdf .

Interesting that these two articles have different rule-sets. The first reckons rolling anything about 100 is a win, whereas the second requires an exact landing!

(Neither plays the "bounce-back" rule always demanded by my friend's little sister!)

Re: Hacking “Chutes and Ladders” using R

#15
post #5

Thanks for this awesome analysis. I've been wanting to do a simulation of how much of Settlers of Catan is luck vs skill. Has anyone seen an analysis like this completed?

I haven't seen a formal analysis, but I can tell you for sure that it is highly skill-based until everyone plays optimally at the game. Then it becomes luck-based.

Best example was a tournament for Settlers. In the early stages one player dominated each table. But in one of the last stages it was only the top players. The game ended with one person getting their 10th VP and everyone else at the table had their 10th VP in their hands.

Re: Hacking “Chutes and Ladders” using R

#16
post #10

I don't want to knock the article, since this kind of exploration is fun and well written blogs are always a joy to read. But knowing some statistics, the entire of Snakes and Ladders is an absorbing markov chain [1] and can be very quickly analyzed as such without having to resort to sampling. Random sampling is easy but take a step back and the entire state space is an integer in [1,100]. (Actually there are fewer…

I also wrote a little blog post about that very thing back in 2011. In addition to using a Markov chain approach, also took a look at it from an information entropy perspective. And the code is also in R, to boot! http://bayesianbiologist.com/2011/12/31/uncertainty-in-marko...

Re: Hacking “Chutes and Ladders” using R

#17
post #5

Thanks for this awesome analysis. I've been wanting to do a simulation of how much of Settlers of Catan is luck vs skill. Has anyone seen an analysis like this completed?

I haven't seen a formal analysis, but I can tell you for sure that it is highly skill-based until everyone plays optimally at the game. Then it becomes luck-based. Best example was a tournament for Settlers. In the early stages one player dominated each table. But in one of the last stages it was only the top players. The game ended with one person getting their 10th VP and everyone else at the table had their 10th V…

Yeah completely agree with you. What do you think would be a good thought process between modelling skill and luck in game. I guess you have to create a skill attribute that can affect particular parts of game play in a simulation and then run simulations and compare outcomes with skill vs outcomes with chance.You would then create a cap on skill? Alternatively, can skill be capped by innate features of the game? I guess i'm wondering if its possible to model this without building in the conclusion a priori? I guess this means you have to make sure your model is actually representative of the game and the outcomes and not building in attributes that are only present in the model but not the real game. Just sort of thinking out loud here.
Post reply on HN