Coscott comments on Even Odds - Less Wrong

35 Post author: Coscott 12 January 2014 07:24AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (46)

You are viewing a single comment's thread. Show more comments above.

Comment author: benkuhn 12 January 2014 11:08:37PM 7 points [-]

A less complex way of making bets on probabilities, which I learned at a finance internship, is for one player to "make a market" on the outcome of interest--that is, offer to buy or sell contracts whose value settles to, e.g., $1 if the outcome is true and $0 if the outcome is false. If you make a market with a "spread"--e.g. buy at .40, sell at .60--then you can safely name your probability, as the counterparty in this anecdote asks you to do, without giving up a large advantage. For example, at my internship one common thing was precommitting to trade on any market of a given spread.

This has the advantage of being easier to remember and allowing multiple parties, but the disadvantage of (probably, I think) being subject to gaming and market dynamics which distract from the probabilities (but are interesting in their own right).

Comment author: Coscott 13 January 2014 12:48:12AM 0 points [-]

I don't think it is too difficult to remember. You put in the square of probability you think you're correct minus the square of probability he thinks you are correct all times 25. He uses the same algorithm.

Comment author: savageorange 13 January 2014 02:25:01AM *  1 point [-]

A: 60% confidence B: 30% confidence

  • af = .6 **2 == .36
  • bf = .3 **2 == .09
  • A pays (af - bf) * 25 == $6.75
  • B pays (bf - af) * 25 == -$6.75?!?!

My intent is to demonstrate that, while the above is probably incorrect,

You put in the square of probability you think you're correct minus the square of probability he thinks you are correct all times 25. He uses the same algorithm.

is not an adequate explanation to remember and get the right result out of, because the calculations I specified above are my genuine interpretation of your statements.

(this problem persists for every value of p and q, whether they total to above 1 or not)

Comment author: savageorange 14 January 2014 10:12:54AM *  4 points [-]

Somebody replied with an explanation of how I was basically omitting the relativization of 'you' when considering what values to use.

That is, B should bet according to his confidence that he is correct, which in my case would be 70%..

  • B bets (.49 - .16) * 25 == $8.25
  • A bets (.36 - .09) * 25 == $6.75
Comment author: Douglas_Knight 13 January 2014 04:39:21PM 4 points [-]

Since you know it's wrong, how about you try again to make sense of it?

Comment author: savageorange 14 January 2014 10:14:02AM 2 points [-]
Comment author: JacekLach 13 January 2014 10:02:06PM *  0 points [-]

Neither probability should be <50%, you take the probability that your opinion is the right one, not whether the proposition is true or false.

In your example B would be betting against his beliefs, thus the negative result.

The right calculation: A = 0.6 B = 0.7

A pays: (A ^ 2 - (1 - B) ^ 2) * 25 = (0.36 - 0.09) * 25 = 6.57
B pays: (B ^ 2 - (1 - A) ^ 2) * 25 = (0.49 - 0.16) * 25 = 8.25

Edit:

actually, it's sufficient that A and B sum to over 1. Since you can always negate the condition, the right calculation here is:

A = 0.4
B = 0.7
A pays: (A ^ 2 - (1 - B) ^ 2) * 25 = (0.16 - 0.09) * 25 = 1.75
B pays: (B ^ 2 - (1 - A) ^ 2) * 25 = (0.49 - 0.36) * 25 = 3.25

Also, apparently I can't use the retract button the way I wanted to use it.