Bertrand's Box Paradox

by aoum, Mar 14, 2025, 8:23 PM

Bertrand's Box Paradox: A Counterintuitive Probability Puzzle

Bertrand's Box Paradox is a classic probability puzzle that demonstrates how our intuition about random selection can often be misleading. It was introduced by the French mathematician Joseph Bertrand in 1889 and remains a popular example of how probability can produce surprising results.

https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Three_mystery_boxes.jpg/260px-Three_mystery_boxes.jpg

1. What Is Bertrand's Box Paradox?

Imagine you have three boxes, each containing two coins:
  • Box A: Two gold coins (GG)
  • Box B: One gold coin and one silver coin (GS)
  • Box C: Two silver coins (SS)

You randomly pick a box and draw a coin. If the coin is gold, what is the probability that the other coin in the same box is also gold?

At first glance, you might think the answer is \( \frac{1}{2} \), but the correct probability is actually \( \frac{2}{3} \)!

2. Breaking Down the Probability

To understand why, let's carefully work through the situation:
  • There are three boxes, each equally likely to be chosen.
  • If you draw a gold coin, you could be in either Box A or Box B (you cannot be in Box C because it only contains silver coins).

However, not all outcomes are equally likely. Since Box A contains two gold coins, you are twice as likely to draw a gold coin from Box A as from Box B.

Step 1: Possible Outcomes

If we randomly select a box and then draw a coin, the following outcomes are equally likely:
  • Box A, Gold coin (probability \( \frac{1}{3} \times \frac{2}{2} = \frac{1}{3} \))
  • Box B, Gold coin (probability \( \frac{1}{3} \times \frac{1}{2} = \frac{1}{6} \))
  • Box C, Silver coin (probability \( \frac{1}{3} \times \frac{2}{2} = \frac{1}{3} \))

Since we know a gold coin was drawn, we can ignore the outcome involving Box C.

Step 2: Update Probabilities Using Conditional Probability

The total probability of drawing a gold coin is:

\[
P(\text{Gold}) = P(\text{Gold | Box A}) \times P(\text{Box A}) + P(\text{Gold | Box B}) \times P(\text{Box B})
\]
\[
P(\text{Gold}) = \frac{2}{2} \times \frac{1}{3} + \frac{1}{2} \times \frac{1}{3} = \frac{1}{3} + \frac{1}{6} = \frac{1}{2}
\]
The probability that the other coin is gold (meaning we are in Box A) is:

\[
P(\text{Box A | Gold}) = \frac{P(\text{Gold | Box A}) \times P(\text{Box A})}{P(\text{Gold})}
\]
\[
P(\text{Box A | Gold}) = \frac{\frac{1}{3}}{\frac{1}{2}} = \frac{2}{3}
\]
3. Why Does the Intuition Fail?

Our intuition fails because we overlook the fact that drawing a gold coin from Box A is twice as likely as from Box B. Since Box A contains two gold coins, it gets "counted" more in the total outcomes.

4. A Different Perspective: Counting the Coins

Instead of thinking about the boxes, imagine the individual gold coins:
  • Two gold coins from Box A
  • One gold coin from Box B

If you draw a gold coin, the chance it came from Box A is \( \frac{2}{3} \) because 2 of the 3 gold coins are in Box A.

5. Simulating Bertrand's Box Paradox with Python

We can confirm the result through simulation:

import random

def bertrand_simulation(trials=100000):
    boxes = [('G', 'G'), ('G', 'S'), ('S', 'S')]
    count_box_A = 0
    gold_drawn = 0

    for _ in range(trials):
        box = random.choice(boxes)
        coin = random.choice(box)
        
        if coin == 'G':
            gold_drawn += 1
            if box == ('G', 'G'):
                count_box_A += 1
    
    return count_box_A / gold_drawn

print(f"Probability the other coin is gold: {bertrand_simulation():.4f}")


This simulation should produce a value close to \( \frac{2}{3} \).

6. Applications of Bertrand’s Box Paradox

The paradox has implications beyond simple puzzles:
  • Medical Testing: Understanding false positives and interpreting conditional probabilities.
  • Cryptography: Analyzing probabilities in complex systems.
  • Bayesian Statistics: Applying conditional probability in decision-making.
  • Game Theory: Evaluating outcomes with unequal likelihoods.

7. Similar Paradoxes and Puzzles

Bertrand’s Box Paradox is related to other famous probability paradoxes:
  • The Monty Hall Problem: Another counterintuitive probability puzzle involving conditional probability.
  • The Two-Envelope Paradox: A paradox involving expectations and switching strategies.
  • The Three Prisoners Problem: A puzzle about updating probabilities with new information.

8. Conclusion

Bertrand’s Box Paradox shows how easily our intuition can be misled when dealing with conditional probabilities. By carefully analyzing the possible outcomes, we reveal that the likelihood of both coins being gold is \( \frac{2}{3} \), not \( \frac{1}{2} \). This paradox highlights the importance of precise reasoning in probability and serves as a powerful lesson for real-world applications.

References

Comment

J
U VIEW ATTACHMENTS T PREVIEW J CLOSE PREVIEW rREFRESH
J

2 Comments

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
You can actually use Bays rule for conditional probability!

by rayliu985, Mar 16, 2025, 7:58 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
That's nice to know! I'll do a post on Bayes' Theorem, also known as Bayes' Law or Bayes' Rule.

by aoum, Mar 16, 2025, 10:25 PM

Fun with Math and Science!

avatar

aoum
Archives
+ March 2025
Shouts
Submit
  • Excellent blog. Contribute?

    by zhenghua, Apr 10, 2025, 1:27 AM

  • Are you asking to contribute or to be notified whenever a post is published?

    by aoum, Apr 10, 2025, 12:20 AM

  • nice blog! love the dedication c:
    can i have contrib to be notified whenever you post?

    by akliu, Apr 10, 2025, 12:08 AM

  • WOAH I JUST CAME HERE, CSS IS CRAZY

    by HacheB2031, Apr 8, 2025, 5:05 AM

  • Thanks! I'm happy to hear that! How is the new CSS? If you don't like it, I can go back.

    by aoum, Apr 8, 2025, 12:42 AM

  • This is such a cool blog! Just a suggestion, but I feel like it would look a bit better if the entries were wider. They're really skinny right now, which makes the posts seem a lot longer.

    by Catcumber, Apr 4, 2025, 11:16 PM

  • The first few posts for April are out!

    by aoum, Apr 1, 2025, 11:51 PM

  • Sure! I understand that it would be quite a bit to take in.

    by aoum, Apr 1, 2025, 11:08 PM

  • No, but it is a lot to take in. Also, could you do the Gamma Function next?

    by HacheB2031, Apr 1, 2025, 3:04 AM

  • Am I going too fast? Would you like me to slow down?

    by aoum, Mar 31, 2025, 11:34 PM

  • Seriously, how do you make these so fast???

    by HacheB2031, Mar 31, 2025, 6:45 AM

  • I am now able to make clickable images in my posts! :)

    by aoum, Mar 29, 2025, 10:42 PM

  • Am I doing enough? Are you all expecting more from me?

    by aoum, Mar 29, 2025, 12:31 AM

  • That's all right.

    by aoum, Mar 28, 2025, 10:46 PM

  • sorry i couldn't contribute, was working on my own blog and was sick, i'll try to contribute more

    by HacheB2031, Mar 28, 2025, 2:41 AM

54 shouts
Contributors
Tags
Problem of the Day
Fractals
combinatorics
geometry
poll
Collatz Conjecture
Factorials
graph theory
Millennium Prize Problems
pi
Riemann Hypothesis
Sir Issac Newton
AMC
calculus
Chudnovsky Algorithm
Exponents
Gauss-Legendre Algorithm
Goldbach Conjecture
infinity
Koch snowflake
MAA
Mandelbrot Set
Mastering AMC 1012
MATHCOUNTS
Matroids
Nilakantha Series
number theory
P vs NP Problem
P-adic Analysis
Polynomials
probability
Ramsey Theory
algebra
Algorithmic Applications
AMC 10
AMC 8
angle bisector theorem
Angle trisection
Applications in Various Fields
Arc Sine Formula
Archimedes Method
Banach-Tarski Paradox
Basel Problem
Basic Reproduction Number
Bayes Theorem
Bernoulli numbers
Bertrand s Box Paradox
binomial theorem
Birthday Attack
Birthday Problem
buffon s needle
Cantor s Infinite Sets
cardinality
catalan numbers
Circumference
Coin Rotation Paradox
computer science
conditional probability
conic sections
Conjectures
Cryptography
Cyclic Numbers
Cyclic Sieving Phenomenon
Different Sizes of Infinity
Diophantinve Approximation
Dirichlets Approximation
Diseases
Double Factorials
Drake Equation
epidemiology
Euler s Formula for Polyhedra
Euler s Identity
Euler s totient function
Euler-Lagrange Equation
Fermat s Factoring Method
fermat s last theorem
Fibonacci sequence
finite
four color theorem
Fractals and Chaos Theory
free books
Gamma function
Golden Ratio
Graham s Number
Graph Minor Theorem
gravity
Greedoids
Gregory-Liebniz Series
Hailstone Problem
Heron s Formula
Hilbert s Hotel
Hodge Conjecture
ideal gas law
Inclusion-exclusion
infinite
Irrational numbers
Kruskals Tree Theorem
Law of Force and Acceleration
legendre s theorem
Leibniz Formula
logarithms
logic
Mastering AMC 8
Menger Sponge
Minkowskis Theorem
modular arithmetic
Multinomial Theorem
Multiples of 24
National Science Bowl
Newton s First Law of Motion
Newton s Second Law of Motion
Newton s Third Law of Motion
Parabolas
Paradox
paradoxes
Penrose Tilings
physical chemistry
pie
pigeonhole principle
Price s Equation
prime numbers
primes
Pythagorean Theorem
Python
Ramsey s Theorem
Reproduction Rate of Diseases
Sequences
Sequences of Binomial Type
Sets
Sierpinski Triangle
Sierpiski Carpet
Sierpiski Triangle
Simon s Factoring Trick
The Birthday Problem
The Book of Formulas
The HalesJewett Theorem
The Law of Action and Reaction
The Law of Inertia
The Lost Boarding Pass Problem
thermodynamics
Topological Insights
triangle inequality
trigonometry
twin prime conjecture
Umbral Calculus
Van der Waerdens Theorem
venn diagram
Wallis Product
Zeno s Paradoxes
About Owner
  • Posts: 0
  • Joined: Nov 2, 2024
Blog Stats
  • Blog created: Mar 1, 2025
  • Total entries: 93
  • Total visits: 971
  • Total comments: 26
Search Blog
a