Is Scrabble's method of determining turn order fair?

6.9k Views Asked by At

At least the way my family plays, turn order is determined by drawing tiles and seeing who has the letter closest to A (blanks taking precedence). If I recall correctly, there are 100 unevenly distributed letters.

Intuitively, it seems like it would be unfair, though I can't come up with a way to prove it. Obviously the distribution matters: my thoughts are if there are more tiles in the first half of the alphabet (including blanks), then the starting player holds an advantage since they're more likely to get a tile earlier in the alphabet than the next (and vice versa if there are fewer tiles in the first half). That doesn't seem too right, though. I'm probably just forgetting some basic prob stats.

I imagine this is likely a duplicate, but I couldn't find anything relating to it (maybe since I've been searching for Scrabble). My apologies if it is.

Please feel free to edit in appropriate tags.

6

There are 6 best solutions below

1
On BEST ANSWER

Because of symmetry, no player has an advantage. That is, if $\mathscr A$ is the set of outcomes where player $A$ gets the letter closest to A and $\mathscr B$ is the set of outcomes where player $B$ gets the letter closest to A, there is a one-to-one correspondence between $\mathscr A$ and $\mathscr B$ obtained by interchanging the letters players A and B get. Since all outcomes are equally likely, they have the same probability of getting to go first.

3
On

How do the players draw their tiles? If the tiles are in a bag, and the players reach into the bag and pull out a tile, they may cheat by feeling for a blank tile. Or, if the tiles are spread out face down on the table, players may be able to recognize them by marks on the back. If this kind of cheating is allowed, the player who draws first has an advantage. However, IF WE ASSUME RANDOM DRAWING, no player has an advantage.

Suppose that the first player has a better chance of drawing a blank than the second player. Then, by the same token, the first player has a better chance of drawing a Z than the second player, because (under our assumption of random drawing) there is no difference between a blank and a Z (except that there are two blanks and only one Z in the standard English set). And the same goes for every other letter of the alphabet: the first player has a better chance of drawing it than the second player. But this is plainly absurd. It would mean that, over a long series of games, the first player would draw every tile in the set more often than the second player.

0
On

Your intuition would make sense if you could choose individual tiles with unequal probabilities. For example, imagine that there are just two tiles, 'A' and 'B', and the selection process is such that tile 'A' is chosen with probability $0.75$ and 'B' with $0.25$. Then obviously the player who draws first has a higher probability of being the winner.

Now imagine that instead of two we have four tiles, and all are equiprobable to pick (much like your scrabble scenario). Three 'A's and one 'B'. Now you still have a $0.75$ probability of drawing 'A', but unlike the first case, you do not pick all the 'A's from the bag if you pick an 'A'.

What's the probability of winning then? Let's name the outcome X and give it a value $+1$ for winning and $-1$ for losing. What is the expected value $E(X)$ if you go first? If you are unlucky to draw the 'B' you certainly lost (there are only 'A's for the second person to pick). If you pick 'A', you might win (with probability 1/3 the second person will pick 'B'), or you might replay the whole game (because the second person will pick another 'A' and it's a draw). Let's write these down:

$$E(X) = 0.25\cdot (-1) + 0.75\cdot(\frac{1}{3}\cdot 1 + \frac{2}{3}\cdot E(X)) \iff \\ E(X) = -\frac{1}{4} +\frac{1}{4} + \frac{1}{2}E(X) \iff \\ E(x) = \frac{1}{2}E(X) \iff\\ E(X) = 0$$

You see how the good cases are balanced out by the bad ones and the net result is zero gain. Granted, this is a specific example to illustrate a point, but you can easily see how this generalises to any probabilities.

There is of course the symmetry argument outlined in the answer by Robert Israel, that generalises this for any number of players. This works because tiles are equiprobable, and I think this approach here helps us a little to get a better intuition.

2
On

Look at a toy problem. Suppose there are two players and three tiles: $A_{1}$, $A_{2}$, and $B$. The subscripts on the $A$,s indicate there are two $A$ tiles. Look at all the possible outcomes: the first letter is what the first player draws, the second letter is what the second player draws and the third letter is the remaining letter.

  1. $A_{1}A_{2}B$
  2. $A_{1}BA_{2}$
  3. $A_{2}A_{1}B$
  4. $A_{2}BA_{1}$
  5. $BA_{1}A_{2}$
  6. $BA_{2}A_{1}$

The first and third outcomes are draws. The first player wins the second and fourth outcomes. The second player wins the fifth and sixth outcomes. In this example; if the first player draws a good tile, an $A$, the first player can do no worse than draw; if the first player draws a bad tile, a $B$, the second player has to win.

0
On

Whether the method is fair or not depends on what you do in case of a tie. (That is, several players draw the "best" letter.)

If you let each player draw another letter until there's a winner, everything is entirely symmetric and there is no advantage to anyone. You could as well forget in which order the letters got drawn once you compare them to each other.

If you just let the first person who drew the best letter start, there goes their advantage.

3
On

Addon to Robert's answer:

If after someone draws a tile then replaces it, the events are independent, therefore the probability is the same.

However, if someone draws a tile and holds it, the events are dependent. Example:

Player 'A' draws R. They do not replace it.

Player 'B' now has a slightly larger chance of drawing an A or a B or another "high" letter.

Now, look at this scenario:

Player 'A' draws A. They do not replace it.

Player 'B' now has a much smaller chance of drawing an A. They have a slightly higher chance of drawing a B or another "high" letter, but it doesn't matter since they'll lose anyway.

TL;DR: Make sure all players are clear on whether to hold or replace tiles, as it has an effect on probabilities of tying (but not overall fairness).