-
Couldn't load subscription status.
- Fork 7
Description
The author shows how to compute the number of games in a single-elimination tournament, using the following notation:
X - set of games
Y - set of players
L - set of losers (players that lost games)
f: X -> Y - function that given a game, returns its loser (injection - each game has unique loser)
Next, the author claims that in the case of a double-elimination tournament:
you won’t have an injection, but a so-called “double-cover” of the set of players. What I mean by double-cover is that every y ∈ Y has a preimage f^{−1}(y) = {x ∈ X : f(x) = y} of size exactly 2
However, isn't this statement false? If Y is the set of ALL players (losers and a single winner), then all, but one of the elements of Y will have a preimage of size exactly 2, while the winner will have an preimage of size 0 or 1. Am I missing something or did the author make a mistake or mean to write L instead of Y in the cited fragment?