CommencerCommencer gratuitement

Bayes' theorem applied

Let's actually solve out a pretty straightforward, yet typical Bayes' theorem interview problem. You have two coins in your hand. Out of the two coins, one is a real coin (heads and tails) and the other is a faulty coin with tails on both sides.

You are blindfolded and forced to choose a random coin and then toss it in the air. The coin lands with tails facing upwards. Find the probability that this is the faulty coin.

Cet exercice fait partie du cours

Practicing Statistics Interview Questions in Python

Afficher le cours

Instructions

  • Print the probability of the coin landing tails.
  • Print the probability of the coin being faulty.
  • Print the probability of the coin being faulty and landing tails.
  • Print and solve for the probability that the coin is faulty, given it came down on tails.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Print P(tails)
print(____)

# Print P(faulty)
print(____)

# Print P(tails and faulty)
print(____)

# Print P(faulty | tails)
print(____)
Modifier et exécuter le code