(no title)
one-more-minute | 3 years ago
`B = (2A if A=50, A/2 if A=100)`. Simplifying this to `B = 2A or A/2` loses important information: namely that when B is smaller, you expect A to be larger. Or alternatively, treating A as fixed (say A=100) conflates two different situations: one where the amounts are `100, 200` and one where they are `100, 50`. So you end up thinking B must have (200+50)/2 in it, which is incoherent. If you compute the expected B correctly then `A` is different in each branch.
It is subtle though. If this appeared in a paper, arguing something not obviously wrong, it'd be hard to convince everyone that the reasoning is bad.
pontus|3 years ago
However, suppose x is placed in an envelope and handed to you. Then a fair coin is flipped. If it comes up heads, 2x is placed in another envelope and if it comes up tail, x/2 is placed in that envelope. Then you should switch.
It's a subtle difference in how the envelopes are prepared, but it makes all the difference.
zmgsabst|3 years ago
I’m not sure I’d have naively realized that the fixed amount in your envelope makes so much difference.
For people confused like me, think about the outcomes:
When the two are prepared together, say $2 and $4, then when you exchange your options are +2 and -2 with 50:50 odds.
When the second envelope is prepared based on $2 in your envelope, then when you exchange your options are +2 and -1 with 50:50 odds.
(I had to diagram this all out; unintuitive to me!)
bottled_poe|3 years ago
stephencanon|3 years ago
one-more-minute|3 years ago
I see that the article also says "commonly one writer proposes a solution to the problem as stated, after which another writer shows that altering the problem slightly revives the paradox." But it doesn't seem to elaborate on where the simple resolution falls down, if it does.
lisper|3 years ago
https://www.youtube.com/watch?v=_NGPncypY68
TL;DR (Spoiler alert): the expected value of the amount of money you end up with is an infinite series whose sum changes depending on the order in which you add up the terms, and so you can choose an order that makes this value come out to be positive, negative, or zero.
jonath_laurent|3 years ago
I believe mike_hock provides the clearest and simplest explanation in this thread: https://news.ycombinator.com/item?id=31567251
I also made this argument separately: https://news.ycombinator.com/item?id=31569991
hammock|3 years ago
That initial setup being, the act of starting the game with someone is(?) confers value in and of itself.
So I’m glad the real solution is wonky.
unknown|3 years ago
[deleted]