Try your biased luck

A six-sided dice is biased so that the probability for a particular face to show is proportional to the number of dots on that face.

When the dice is rolled, what is the probability that we get an even number?

4 7 \frac{4}{7} 3 5 \frac{3}{5} 1 2 \frac{1}{2} 2 3 \frac{2}{3}

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Ramesh Goenka
Mar 26, 2015

Brock Brown
Mar 28, 2015

solution solution

Here's a Python simulation of what happens in the gif:

Python 2.7:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
from fractions import Fraction as frac
dice = xrange(1,7)
# count every dot
dots = 0
for side in dice:
    dots += side
# find probabilities of even sides
even_probs = []
for side in dice:
    if side % 2 == 0:
        even_probs.append(frac(side,dots))
# add them up
print "Answer:", sum(even_probs)

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...