How to decide under low-stakes uncertainty

Link post

Say you’re stuck in uncertainty between two actions you’re considering. They seem about equally good, but you suspect one is better, and it’s not obvious which. You already have all the information to obviously collect about the problem.

For situations where getting it right really matters, try harder to get more information, and use methods more reliable than those presented here.

For lower-stakes problems:

  1. Assign one option to 0/​tails and the other to 1/​heads.

  2. Flip a coin, i.e. use a one-bit random number generator.

  3. Start accepting the decision from the coinflip, and observe your revealed unconscious intuition, for you will probably have some.

  4. If that intuition opposes the coin’s decision, go with the intuition. Otherwise, you either actively came to agree with the random decision, or it still seems terribly uncertain, so you go with the random choice.

This is classic advice. I’m just sharing it. The “innovation” here is a way to handle cases where it’s inconvenient to flip a coin or do the equivalent.

Mental coinflip

  1. Assign one option to 0/​tails and the other to 1/​heads.

  2. Think about something unrelated.

  3. Notice the first word that pops into your mind.

  4. Count letters in that word. If it’s even, you get 0; if it’s odd, you get 1.

  5. Use that 0 or 1 to continue at step 3 of the general procedure.

This is very crude randomness, but it doesn’t really have to be random, just uncorrelated with the topic of decision. You should not use a mental coinflip to try to run a fair game of chance.

There may be a bias in the length-parity of words you think of. I, so far, haven’t noticed one. But that wouldn’t necessarily be a problem. Once you notice such a bias, you can exploit it by assigning actions to 01 so that the mental coinflip bias opposes a bias you naturally have.

E.g. if you pick odd-length words more often, when the choice is between “doing nothing” and “doing something”, assign “doing something” to 1. Laziness may lead you to want to “do nothing” more often than you should.

More than two options

You can use the same methods here for decisions more complicated than a dichotomy.

  1. List the options you’re considering.

  2. Split that list into two subsets.

  3. Apply the coinflip-assisted decision procedure to pick one subset.

  4. If the selected subset has just one item, that’s your decision. Otherwise, repeat this procedure on the selected subset.