http://qs1969.pair.com?node_id=495130


in reply to Spooky math problem

Hi, your link to the puzzle has to be updated, it now points to a nonexistent page.

Nevertheless, I found the solution and also this discussion about the problem, but the solution is flawed IMHO. Apart from the fact that the author is arguing about the phrasing in the original solution, the algebra should be the following (quoted from one of the messages in the thread):

P(correct guess) = P(we were shown the higher number H) * P(we guessed "high" given H) + P(we were shown the lower number L) * P(we guessed "low" given L) => (plugging in from the original selection method) P(correct guess) = (1/2) * (1 - F(H)) + (1/2) * F(L) => P(correct guess) = (1/2) (1 - (F(H) - F(L))) => Since F(H) - F(L) > 0 (by assumption) P(correct guess) = (1/2) (1 - (a positive value)) => Therefore, P(correct guess) < 1/2.
What I find very amusing is that we're using two different values (namely H and L) to feed the F function, but this is not applicable. We have to use the same value - that is the value we figure out in our mind, let's call it y. This leads to:
P(correct guess) = (1/2) (1 - (F(y) - F(y))) = 1/2
as it should clearly be.

Flavio
perl -ple'$_=reverse' <<<ti.xittelop@oivalf

Don't fool yourself.

Replies are listed 'Best First'.
Re^2: Spooky math problem
by Anonymous Monk on Mar 25, 2009 at 04:22 UTC
    You've got it backwards. It should be
    P(correct guess) = (1/2) * F(H) + (1/2) * (1 - F(L))
    
    which does give you a probability > 1/2.