Kahneman's Taxi problem

1 view (last 30 days)
George Rooney
George Rooney on 24 Nov 2020
Commented: George Rooney on 25 Nov 2020
Can someone sugest how to create a simulation of Kahneman's taxi problem?

Accepted Answer

Jeff Miller
Jeff Miller on 24 Nov 2020
  1. Generate a cab of one color or the other with the appropriate probabilities.
  2. Get the color ID response from the witness with the appropriate probability.
  3. Record the actual cab color and the color ID response.
Iterate steps 1-3 10,000 times.
From the 10,000 iterations, select all the ones where the color ID response was blue. Say there are N of these.
Find out what proportion of those N times the actual cab color was blue.
  3 Comments
Jeff Miller
Jeff Miller on 25 Nov 2020
Hi George, Yes, what you are describing sounds like a version of what I am suggesting. To make it more like what I think of as a "simulation", I would convert the initial 1-85 versus 86-100 into blue versus green, and then 1-80 // 81-100 into correct/incorrect, but that is just semantics.
Yes, it is straightforward to do all this in matlab. For starters, randi(100,10000,2) will give you 10,000 rows and two columns of numbers 1-100.
George Rooney
George Rooney on 25 Nov 2020
Thanks very much. I will give it a try.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!