Repeated Readings
A single measurement can often have a lot of uncertainty associated with it. We've already seen evidence of this in the DNA sequencing problem or in everyday life when we think that guy we just saw in front of the CVS in Central Square might have been Nicolas Cage, but then we go and look again (take a second measurement) and realize it is just some random guy. We'll investigate this phenomenon below.
A color sensor for object detection is used to determine if an object is red, green, or blue.

The output of the sensor is "R", "G", or "B"; however the sensor is not perfect. An engineer generated a conditional probability table estimated from lab experiments where an object of each of the color was placed in front of the sensor and many independent measurements were made. The measurements were subsequently pooled together to generate output probabilities given each color. These probabilities are shown in the table below. For example, the sensor has a 0.10 probability of printing a "B" when it is given a red object to read.,
P(Obs="R"|Object=x) | P(Obs="G"|Object=x) | P(Obs="B"|Object=x) | |
Object=Red | 0.60 | 0.30 | 0.10 |
Object=Green | 0.25 | 0.50 | 0.25 |
Object=Blue | 0.05 | 0.25 | 0.70 |
- Assume blue, red, and green objects occur with equal probability.
- Objects have fixed colors (either red, green, or blue) that do not change in time.
Part 0: Zeroth Reading
Before making any reading, what is the probability of each of three readings? Fill in the probability for each reading to six significant digits. The solution boxes will accept Python numerical expressions so feel free to enter your computations into them. (for example either 0.1666667 or 1.0/6 is valid)
|
|
|
|
|
|
Part 1: First Reading
The sensor is provided an object and reads a "B". Given this new information, fill in the probability for each object color to six significant digits. The solution boxes will accept Python numerical expressions so feel free to enter your computations into them. (for example either 0.1666667 or 1.0/6 is valid)
|
|
|
|
|
|
Part 2: Second Reading
The sensor slightly repositions itself and again measures the same object as before. It returns a "B". Given this new information, fill in the probability for each object color to six significant digits. The solution boxes will accept Python numerical expressions so feel free to enter your computations into them. (for example either 0.1666667 or 1.0/6 is valid)
|
|
|
|
|
|
Part 3: Third Reading
The sensor slightly repositions itself and again measures the same object as before. It returns a "B" for the third time. Given this new information, fill in the probability for each object color to six significant digits. The solution boxes will accept Python numerical expressions so feel free to enter your computations into them. (for example either 0.1666667 or 1.0/6 is valid)
|
|
|
|
|
|
Part 4: Fourth Reading
Based on all the readings you have made so far, what is the probability of seeing each of the following readings the fourth time we observe the object? (Answer to six significant digits.) The solution boxes will accept Python numerical expressions so feel free to enter your computations into them. (for example either 0.1666667 or 1.0/6 is valid)
|
|
|
|
|
|