It is very simple. Let's represent the poorer envelope by the value 0.5 and the more bountiful one by 1.0. The expected value from the envelope draw is 0.75: 0.5 drawn with a 50% probability contributing 0.25 to the expected value, and 1.0 drawn with a 50% probability contributing another 0.5 to the expected value for a total of 0.75. If you were to do a large number N of these draws, the value you will obtain will b…
Two envelopes problem
21–30 of 318 posts
Re: Two envelopes problem
#22It is very simple. Let's represent the poorer envelope by the value 0.5 and the more bountiful one by 1.0. The expected value from the envelope draw is 0.75: 0.5 drawn with a 50% probability contributing 0.25 to the expected value, and 1.0 drawn with a 50% probability contributing another 0.5 to the expected value for a total of 0.75. If you were to do a large number N of these draws, the value you will obtain will b…
Re: Two envelopes problem
#23Notably different from the Monty Haul problem where additional information is given to the player of the game prior to making the decision to switch. See https://en.wikipedia.org/wiki/Monty_Hall_problem
Personally I don't think you are given any new information in the Monty Hall problem that's worth anything. You always knew there was a 100% chance that one of the doors in that set has a goat behind it, which door that is is pretty much irrelevant. Or to put it another way how many people would stick with their chosen door if instead of opening a door and showing a goat they were simply asked "would you like to stic…
I have a deck of a billion cards, one entitles you to the car, the others have a picture of a goat. You pick one at random but do not get to see it.
Of the remaining 999,999,999 cards, I discard 999,999,998 goats.
Do you want your initial card, or the remaining card in my deck?
Or to frame it another way, do you want the car iff you picked it first or iff you did not pick it first?
Re: Two envelopes problem
#24Notably different from the Monty Haul problem where additional information is given to the player of the game prior to making the decision to switch. See https://en.wikipedia.org/wiki/Monty_Hall_problem
Personally I don't think you are given any new information in the Monty Hall problem that's worth anything. You always knew there was a 100% chance that one of the doors in that set has a goat behind it, which door that is is pretty much irrelevant. Or to put it another way how many people would stick with their chosen door if instead of opening a door and showing a goat they were simply asked "would you like to stic…
you make your guess Me: Ok, I will reveal that the number is either $YOUR_GUESS or 452,871. You may keep your original guess or switch to 452,871.
Of course, you would switch, because the chances you guessed correctly originally were 1 in a million.
Re: Two envelopes problem
#25I love this problem because it is so simple, and the false line of reasoning is so compelling that it would hardly raise an eyebrow if you saw it in an academic paper and yet the conclusion is so obviously wrong. Decision problems are tricky and in non intuitive ways.
Or code that “obviously” has a bug only after it caused an issue in production.
Would be nice if someone warned me before I do a PR: “ok, fyi there is a subtle but devastating bug in the new_feature.cpp”
Re: Two envelopes problem
#26It is very simple. Let's represent the poorer envelope by the value 0.5 and the more bountiful one by 1.0. The expected value from the envelope draw is 0.75: 0.5 drawn with a 50% probability contributing 0.25 to the expected value, and 1.0 drawn with a 50% probability contributing another 0.5 to the expected value for a total of 0.75. If you were to do a large number N of these draws, the value you will obtain will b…
>The puzzle is to find the flaw in the very compelling line of reasoning above. This includes determining exactly why and under what conditions that step is not correct, in order to be sure not to make this mistake in a more complicated situation where the misstep may not be so obvious. In short, the problem is to solve the paradox. Thus, in particular, the puzzle is not solved by the very simple task of finding anot…
If the envelopes contain, say, $50 and $100, it looks like a doubling/halving. But nothing materially changes if we add $1000 to each one to make $1050 and $1100. The probabilities don't depend on what is in the envelopes, and the win/loss is just a spread of the difference between their values.
Why would anyone, while solving some problem, worry about some unspecified more complicated situation which supposedly resembles that problem?
Give me the specific of that more complicated problem and I will knock it out of the ballpark using whatever reasoning fits that problem.
Re: Two envelopes problem
#27It is very simple. Let's represent the poorer envelope by the value 0.5 and the more bountiful one by 1.0. The expected value from the envelope draw is 0.75: 0.5 drawn with a 50% probability contributing 0.25 to the expected value, and 1.0 drawn with a 50% probability contributing another 0.5 to the expected value for a total of 0.75. If you were to do a large number N of these draws, the value you will obtain will b…
Re: Two envelopes problem
#28It is very simple. Let's represent the poorer envelope by the value 0.5 and the more bountiful one by 1.0. The expected value from the envelope draw is 0.75: 0.5 drawn with a 50% probability contributing 0.25 to the expected value, and 1.0 drawn with a 50% probability contributing another 0.5 to the expected value for a total of 0.75. If you were to do a large number N of these draws, the value you will obtain will b…
let's imagine the first envelope contained between 1 andand 1000 dollars, the second double the first.
if you open your envelope and it contains a whole number of dollars between 1 and 1000, then you should swap, id take "250 or 750" over 500.
Re: Two envelopes problem
#29Notably different from the Monty Haul problem where additional information is given to the player of the game prior to making the decision to switch. See https://en.wikipedia.org/wiki/Monty_Hall_problem
Personally I don't think you are given any new information in the Monty Hall problem that's worth anything. You always knew there was a 100% chance that one of the doors in that set has a goat behind it, which door that is is pretty much irrelevant. Or to put it another way how many people would stick with their chosen door if instead of opening a door and showing a goat they were simply asked "would you like to stic…
Re: Two envelopes problem
#30Earlier quoted context omitted.
Personally I don't think you are given any new information in the Monty Hall problem that's worth anything. You always knew there was a 100% chance that one of the doors in that set has a goat behind it, which door that is is pretty much irrelevant. Or to put it another way how many people would stick with their chosen door if instead of opening a door and showing a goat they were simply asked "would you like to stic…
When Monty reveals a goat, your odds increase from 1/3 to 1/2 if Monty is picking randomly and just happened not to reveal a goat (and if he revealed a car we start from the top, or you automatically lose, or you automatically win, or...), but to 2/3 if Monty will reliably reveal a goat. I think it's hard to say that you have no extra information in that latter case. It's true that we can add other options (pick both…