3tej home
← Sport & Fitness

What is Tournament Bracket?

A Tournament Bracket computes tournament bracket from the inputs you provide. It applies the standard formula to the values you enter and returns the result instantly, without sending any data to a server. Free Tournament Bracket. The tool runs entirely.

Tournament Bracket

N players → N-1 matches. log₂(N) rounds. Power of 2 ideal.

Inputs

Bracket Size

-

Breakdown

Total matches
-
Rounds
-
Byes needed
-
Note
-

About the single elimination bracket calculator

A single elimination tournament is the simplest knockout format: lose once and you are out. Enter the number of players or teams and this calculator returns the bracket size (the next power of two), the total number of matches, the number of rounds, and how many first round byes are needed. It is the planning tool you reach for when seeding a league night, a chess open, an esports cup, or an office ping-pong ladder.

The format is fast and decisive because the field halves every round, but it is unforgiving: a strong competitor who has one bad game is gone. That is the trade-off against double elimination and round robin, which give more games but take longer. The math here is exact and depends only on the player count, so you can size venues, courts, and time slots before the first whistle.

How it works

Three relationships drive every single elimination bracket. The match count is the cleanest: since each match removes one player and everyone except the winner must be removed, the total is always one less than the field.

Rounds       = ceil( log2(N) )
Bracket size = 2 ^ Rounds         (next power of two >= N)
Matches      = N - 1
Byes         = Bracket size - N

The log base 2 appears because each round halves the remaining players: from the bracket size down to 1 champion. A field of exactly 8, 16, 32, or 64 is a power of two, so it fits perfectly with zero byes. Any other count rounds up to the next power of two, and the difference becomes byes handed to the top seeds in round one so the later rounds stay balanced.

Worked example

Suppose 12 teams enter a single elimination cup.

  1. Rounds: ceil(log2(12)) = ceil(3.585) = 4 rounds.
  2. Bracket size: 2^4 = 16 positions, the next power of two above 12.
  3. Matches: 12 - 1 = 11 matches to crown a champion.
  4. Byes: 16 - 12 = 4 teams get a first round bye and advance straight to round two.
Result: 12 teams play 11 matches across 4 rounds in a 16-slot bracket, with the 4 top seeds receiving a first round bye. Round one has 4 matches (8 teams), leaving 8 teams for the round of 8.

Bracket reference table

Common field sizes, their bracket size, rounds, matches, and byes. Note matches are always players minus one.

PlayersBracket sizeRoundsMatchesByes
44230
88370
12164114
16164150
24325238
32325310
64646630

Common pitfalls

  • Assuming matches equal players over two. That is only the round one count. The whole tournament always needs N minus 1 matches, not N over 2.
  • Forgetting byes for non-power-of-two fields. A 12 or 24 player field cannot pair everyone in round one. Top seeds must receive byes, or the bracket will not resolve cleanly.
  • Placing byes randomly. Byes should go to the highest seeds so the strongest players are not eliminated by a quirk of the draw. Scattering them at random defeats seeding.
  • Confusing rounds with matches. A 64 player event has only 6 rounds but 63 matches. Rounds size the schedule depth; matches size the total games.
  • Ignoring a third place playoff. If you want a third place game, add one match to the total. The N minus 1 figure crowns a single champion only.
  • Using single elimination when fairness matters. One upset removes a top contender. For rankings or money on the line, double elimination or round robin is fairer.

Frequently asked questions

How many matches are in a single elimination tournament?

A single elimination bracket always plays exactly N minus 1 matches for N players, because every match eliminates exactly one player and all but the champion must be eliminated. So 16 players need 15 matches, 32 players need 31 matches, and 100 players need 99 matches.

How many rounds does a bracket have?

The number of rounds is the ceiling of log base 2 of the player count. A field of 16 needs 4 rounds, 32 needs 5, and 64 needs 6. If the count is not a power of two, the next power of two sets the bracket size and the round total.

What is a bye in a tournament bracket?

A bye is a free pass to the next round given when the player count is not a power of two. The number of byes equals the next power of two minus the player count. With 12 players the next power of two is 16, so 4 players receive a first round bye and advance without playing.

Why are powers of two ideal for brackets?

When the player count is a power of two such as 8, 16, 32, or 64, every round halves the field cleanly and no byes are needed. Each player plays in round one and the bracket is perfectly balanced, which is why seeded tournaments aim for these sizes.

How is single elimination different from double elimination?

In single elimination one loss ends your run, so the format is short and needs N minus 1 matches. Double elimination gives every player a second chance through a losers bracket and roughly doubles the match count to about 2N minus 1, which is fairer but takes longer to run.