Tournament formats: round-robin, elimination and mixed formats

How many matches each format generates, how much time it requires and which number of teams it works for: the calculations to make before opening registrations.

Round-robin

Everyone plays everyone. It is the fairest and longest format: with N teams, the matches are N × (N − 1) / 2, and the rounds required are N − 1 if N is even, N if it is odd (with one team resting each round).

TeamsMatchesRounds
463
5105
6155
8287
10459

The growth is quadratic and becomes prohibitive very quickly: going from six to ten teams, the matches triple. With 45-minute slots and two courts, an eight-team round-robin takes more than ten hours. The practical conclusion: a single round-robin is fine up to five or six teams, beyond that you split.

The round-robin is also the right format when the tournament is played over several evenings: a six-team league among friends, one match each per evening, is five evenings and no one is left out.

Single elimination

You are out at the first defeat. With N teams, the matches are exactly N − 1, so it is the most economical format of all: sixteen teams fit into fifteen matches. The bracket is built on a power of 2 (4, 8, 16, 32); if the teams are not a power of 2, you need byes, i.e. rest rounds in the first round.

The number of byes is 2^k − N, where 2^k is the first power of 2 greater than or equal to N. With eleven teams: 16 − 11 = 5 byes, so five teams go straight into the round of 16. Byes are assigned to the seeded teams, otherwise they become a random gift.

The flaw is structural: half of the teams play only one match. In a tournament among friends, where people have given up their Saturday to play, this is a format to be used only for the final stage.

Double elimination

You are out after two defeats: whoever loses moves to a losers' bracket and can work their way back up. The matches are approximately 2N − 2 (one more if the final allows for a rematch). Sixteen teams: about thirty matches instead of fifteen.

It is much fairer than straight knockout and has a real advantage in amateur tournaments: no one goes home after half an hour. The disadvantage is that the schedule is not known in advance beyond the first round, so it must be managed by whoever is keeping the bracket in real time.

Groups plus final stage: the standard format

This is the one that in practice works for 90% of one-day tournaments. You divide the teams into short groups (preferably of 4), the top teams from each group qualify, and a knockout bracket is played.

A complete example with eight teams and two courts:

With 45-minute slots on two courts, that is 16 × 45 / 2 = 360 minutes, which is six hours. Compare this with a single eight-team round-robin: 28 matches, over ten hours. Same perceived fairness, four hours less.

With twelve teams: three groups of 4 (18 matches), then quarter-finals with the top two from each group plus the two best third-placed teams (4 + 2 + 2 = 8 final stage matches), total 26 matches. With three courts and 45-minute slots: about six and a half hours.

Mixed formats worth knowing

How groups are composed

If the teams have a known level, the distribution is done in a serpentine format: teams are ordered by strength and distributed in a zig-zag pattern among the groups. With four groups and sixteen teams, the order is:

TierABCD
11234
28765
39101112
416151413

Each group sums to 34: the groups turn out to be equivalent on paper. If the level is not known, a draw is held — and it is better to draw in front of everyone than to estimate poorly.

An arrangement that avoids half of the complaints: if two teams come from the same group of friends or the same club, put them in different groups. The match between them, if it happens, will happen in the final stage, where it does not decide who qualifies.

Choosing in three questions

  1. How many court hours do I have, for how many courts? From this comes the maximum number of matches.
  2. How many matches do I want the last-placed team to play? If the answer is "at least three", single elimination is ruled out.
  3. Who is keeping the bracket during the day? If no one can follow it in real time, avoid double elimination and the Swiss system: you need formats with a schedule known from the start.

Frequently asked questions

How many matches are needed for a round-robin?

N multiplied by N minus 1, divided by 2. Four teams play 6 matches, six teams 15, eight teams 28: the growth is quadratic, so a single round-robin becomes impractical very quickly.

What is the best format for a one-day tournament?

Groups of four teams followed by semi-finals and a final. With eight teams, there are 16 matches in total, each team plays at least three, and on two courts the day fits into about six hours.

How are byes managed in an elimination bracket?

You calculate the first power of 2 greater than or equal to the number of teams and subtract the number of teams: the result is the number of rest rounds in the first round. They should be assigned to the seeded teams.

What is the serpentine distribution of groups?

Teams are ordered by assumed strength and distributed in a zig-zag pattern among the groups: the first to group A, the second to B and so on, reversing the direction for each tier. The groups turn out to be equivalent on paper.

Continue along this path