You are given two boxes with a number inside each box. The two numbers are different but you have no idea what they are. You pick one box to open; read the number inside; and then guess if the number in the other box is larger or smaller. You win if you guess correctly, and lose otherwise.
Is there anyway that you can win the game with more than $50$ % chances no matter what the two numbers are?
I cannot think of a way. Suppose you get $25$ from first box, now probability of you winning is undoubtedly $1/2$. Either the number in box $2$ is greater than 25 or less than.
To elaborate on mjqxxxx's answer: let's say the two numbers are $a,b$ with $a<b$.
Strategy: pick the box randomly (so that the number you see - denoted by $Y$ - is equally likely to be $a$ or $b$). Also, pick a random threshold $X$ - let's say from the Gaussian distribution on the reals.
If $X>Y$, then guess that the other number is larger. If $X<Y$, then guess that the other number is smaller.
The probability of winning is $$ \begin{align} &\Pr(Win|X\in[a,b])\cdot \Pr(X\in[a,b])+\Pr(Win|X\notin[a,b])\cdot \Pr(X\notin[a,b])\\ =& 1\cdot \Pr(X\in[a,b]) + (1/2)\cdot \Pr(X\notin[a,b])\\ =&\frac{1}{2}+\frac{\Pr(X\in[a,b])}{2}\\ >& \frac{1}{2} \end{align},$$ since the Gaussian distribution assigns positive probability to every interval $[a,b]$. Note that we cannot provide a lower bound on the gap from 1/2.