SLIDE 8 1/13/2020 8
The state of nature Let us take a look at the elements in the Monty Hall example:
Φ = (pt1, pt2, pc1, pc2) , where: pt1 = probability that door 1 holds the prize pt2 = probability that door 2 holds the prize Pc1 = probability that door 1 was the player’s first choice Pc2 = probability that door 2 was the player’s first choice A value could for instance be φ = (1/3, 1/3, 1/3, 1/3).
Department of Veterinary and Animal Sciences Slide 22
7 minute mini-exercise!
Download and open the quiz.R script
- 1. Take a moment to familiarize yourselves with the functions
defined in the upper part of the script
- a. Where are random numbers generated?
- b. How are the random numbers generated?
- 2. Run the simulation with the two strategies at the bottom of
the script
- a. What is the chance of winning with each of the
strategies?
- 3. Keep the script open for the next few slides!
Department of Veterinary and Animal Sciences Slide 23
State of nature, I
- In the example the state of nature has been
regarded as fixed and known Φ0 = (1/3, 1/3, 1/3, 1/3)
- Assume that the host has a favorite door, e.g. door
- 3. He places the reward behind Door 3 with
probability 0.8 and behind each of the others with probability 0.1.
- The participant does not have a favorite door.
- State of nature under those circumstances would be
Φ0 = (0.1, 0.1, 1/3, 1/3)
- Does it change anything? Let’s try!
Department of Veterinary and Animal Sciences Slide 24