Counterintuitive probability problem of the day

[This article was first published on R – Decision Science News, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

TWO SHOT RUSSIAN ROULETTE WITH 2 BULLETS OR AN EQUAL CHANCE OF 1 or 3 BULLETS


With p as the probability of dying on one shot, this figure shows how to get the probability of living through the game.

Peter Ayton is giving a talk today at the London Judgement and Decision Making Seminar

Imagine being obliged to play Russian roulette – twice (if you are lucky enough to survive the first game). Each time you must spin the chambers of a six-chambered revolver before pulling the trigger. However you do have one choice: You can choose to either (a) use a revolver which contains only 2 bullets or (b) blindly pick one of two other revolvers: one revolver contains 3 bullets; the other just 1 bullet. Whichever particular gun you pick you must use every time you play. Surprisingly, option (b) offers a better chance of survival. We discuss a general theorem implying, with some specified caveats, that a system’s probability of surviving repeated ‘demands’ improves as uncertainty concerning the probability of surviving one demand increases. Nonetheless our behavioural experiments confirm the counterintuitive nature of the Russian roulette and other kindred problems: most subjects prefer option (a). We discuss how uncertain probabilities reduce risks for repeated exposure, why people intuitively eschew them and some policy implications for safety regulation.

We can see how many people would think the choice between (a) and (b) doesn’t matter. Naively one might think that 2 bullets leads to the same probability as choosing blindly between 1 and 3 bullets. But this is not true. See the graphic above and plug in different ps.

Or be lazy and let us do it for you. First, approve that this R function is correct:

prob_live_game = function(bullets) { prob_die = bullets / 6 prob_live = 1 - prob_die prob_die * 0 + prob_live * (prob_die * 0 + prob_live * 1) }

Now see below that the probability of living with 2 bullets is .44 while the probability of living with an equal chance of 1 or 3 bullets is .47

> #probability living with 2 bullets > prob_live_game(2) [1] 0.4444444 > > #probability living with 1 bullet > prob_live_game(1) [1] 0.6944444 > > #probability living with 3 bullets > prob_live_game(3) [1] 0.25 > > #probability living with an equal chance of 1 or 3 bullets > .5 * (prob_live_game(1) + prob_live_game(3)) [1] 0.4722222

The post Counterintuitive probability problem of the day appeared first on Decision Science News.

To leave a comment for the author, please follow the link and comment on their blog: R – Decision Science News.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)