"*What would result if one took a deck of playing cards, and tried to guess whether each card were black or red? This would involve placing the deck in a stack, face down, and making a guess on each face-down card prior to turning each card face up, one at a time.
What would the average positive results be? Would one be right about 50% of the time? or, 33%? maybe 25%? I was especially wondering if there is an accepted, statistical average percentage that can answer this question?* "
Returning to the original problem … Of course, if you just guess red or black at random, your expected number of correct guesses would be 26 or a 50% success rate. Let’s assume you’re smarter than this – that you will exploit complete knowledge of all prior turned-over cards in making your next guess. That means you will always guess the color that makes up most of the remaining deck. If there is an even number of red and black cards left in the deck, then you flip a coin and guess red or black with equal probability. For example, if the first card turned over is red, you will guess black for the next card. If the first two cards are red, guess black. If the first two cards are red and black (or vice versa), guess red or black. Etc. Of course, only the last card can be guessed with certainty under all scenarios. Working this out analytically, the exact answer for the expected number of correct guesses is 31.9979620, or a 61.5% success rate. Had to write a small program to do the tedious calculations that required the binomial coefficients and probabilities based on the above assumptions.