Well, seeing as how I just joined, thought I might contribute a few logic problems I've got. Just one for now though. It's been bugging me for a long time.
Set up:
=========================================
Situation:
You are given a choice. In front of you are 2 boxes. Both contain money. The first contains X amount of money, and the other contains either twice that or half that.
Further:
You choose a box. Inside it you find a check for some given amount of money. You are then given a second choice. You can, without knowing anything more, discard the money you have gotten from the first box and take the money from the second.
Question:
Do you?
===========================================
Problem:
The obvious answer is it doesn't matter.
However, look at this line of reasoning. This is where the real logic problem comes into play.
POINT: X CAN VARY FROM CASE TO CASE
p1) Box 1 contains X money
p2) Box 2 contains either 2X or 1/2X money
(good so far)
p3) Assuming you never switch, you will always end up with X money in each case (x being whatever you get)
p4) Assuming you always switch, you will end up with 2X half the time, and 1/2X half the time.
(good so far)
p5) This can be rewritten as 50% chance to get half X and 50% chance to get twice X.
(still good)
p6) This can be rewritten as (.5 * .5X) + (.5 * 2X) = (.25X) + (1X) = (1.25X)
(still good)
C) Since staying with box 1 gives out an average of X, and always switching gives out an average of 1.25X, it is correct to ALWAYS switch.
Now this is the opposite conclusion of what is intuitive. And pretty obviously wrong.
My question is not which answer is right, because it's obvious that it doesn't matter if you switch or not. My question is WHY does the stated logic problem leads to the wrong conclusion? At what point, at what premise (or between what 2 premises) does my logic fail me? No matter how many times I look over it, I can't figure out where that reasoning fails.
Also, don't think I have the answer, I have no idea.
I would appreciate any help.