Think Bayes

This notebook presents example code and exercise solutions for Think Bayes.

Copyright 2018 Allen B. Downey

MIT License: https://opensource.org/licenses/MIT


In [7]:
# Configure Jupyter so figures appear in the notebook
%matplotlib inline

# Configure Jupyter to display the assigned value after an assignment
%config InteractiveShell.ast_node_interactivity='last_expr_or_assign'

# import classes from thinkbayes2
from thinkbayes2 import Hist, Pmf, Suite

Exercise: Let's consider a more general version of the Monty Hall problem where Monty is more unpredictable. As before, Monty never opens the door you chose (let's call it A) and never opens the door with the prize. So if you choose the door with the prize, Monty has to decide which door to open. Suppose he opens B with probability p and C with probability 1-p.

  1. If you choose A and Monty opens B, what is the probability that the car is behind A, in terms of p?

  2. What if Monty opens C?

Hint: you might want to use SymPy to do the algebra for you.


In [8]:
from sympy import symbols
p = symbols('p')

In [9]:
# Solution goes here

In [10]:
# Solution goes here

In [11]:
# Solution goes here

In [12]:
# Solution goes here