Double-Elimination Bracket Generator
Builds a proper double-elimination bracket: a winners' side, a losers' side wired into it, and a grand final between the two survivors. One defeat drops you into the losers' bracket rather than out of the tournament, so a single bad match no longer ends someone's day.
What this generator does
Gives everyone a second life, which is the one thing the single-elimination bracket generator cannot. The two brackets are wired together rather than drawn separately: each winners'-bracket loser drops to a specific losers'-bracket match, so the structure is a single tournament rather than two competitions running side by side.
How to use this tool
- Enter your entrants, one per line — strongest first if you are seeding.
- Choose a random draw or straight seeding from your list order.
- Decide whether a bracket reset is played if the losers' champion wins the grand final.
- Press Draw bracket, then print it and fill in results as they come.
Understanding the controls
- Entrants
- One per line. The count sets everything else — a field of n takes 2(n−1) matches, roughly twice a knockout, because every eliminated entrant has to lose twice rather than once.
- Draw type
- A random draw shuffles everyone into the bracket. Straight seeding treats your list as a ranking, strongest first, which keeps the top entrants apart and gives them any byes.
- Bracket reset
- On, a losers'-champion win in the grand final forces a deciding second match, so the title is only won by a player with fewer than two losses. Off, that single win takes the title — quicker, and not symmetric, since the two finalists arrive with different records.
- Seed
- Makes a random draw reproducible, so an organiser can publish the seed beforehand and let anyone verify the bracket was not redrawn.
Worked examples
- Eight entrants
- 7 winners'-bracket matches, 6 losers'-bracket matches and a grand final — 14 in total, or 15 with a reset.
- Sixteen entrants
- 30 matches across 4 winners' rounds and 6 losers' rounds.
- Five entrants
- An 8-slot bracket with 3 byes to the top seeds, and 8 matches played.
Common use cases
- An esports or fighting-game tournament, where double elimination is the norm
- A club championship where one upset should not end a strong player's day
- A weekend event with enough time for a longer format
- A pool, darts or table-tennis competition run over an evening
- Any tournament where entrants have travelled and deserve more than one match
How this generator works
The winners' bracket is a standard knockout padded to a power of two, with byes going to the top of the draw. The losers' bracket then alternates two kinds of round: a minor round where losers'-bracket survivors play each other, and a major round where they meet the entrants who have just dropped down from the winners' side. That alternation is why the losers' side has exactly twice as many rounds as the winners' side minus one. Dropdowns are mapped onto losers' matches in reverse order, which reduces the chance of somebody meeting the player who has just beaten them.
Randomness and fairness
In a random draw the CSPRNG decides bracket positions and nothing else; the wiring between the two brackets is fixed by the format, so who plays whom later follows from results rather than from chance. Straight seeding randomises nothing at all. A seed switches the draw to a deterministic, non-cryptographic generator so the bracket can be verified afterwards — that is reproducibility, not secrecy, and anyone with the seed can work out the draw in advance.
For how randomness is produced across the whole site, see how Generate Random works.
Limitations and good to know
- The bracket is a structure to print and fill in — nothing here tracks results or advances a winner into the next round for you.
- It takes roughly twice as many matches as a knockout and considerably longer to run. For a large field with limited time, a group stage or a Swiss event finishes sooner.
- There is no club, country or region protection, so two entrants from the same team can meet in the first round.
- A player who reaches the grand final through the losers' bracket has played substantially more matches than the winners' champion, which is a real fatigue disadvantage the format does not compensate for.
- Byes are unavoidable when the field is not a power of two, and a bye is a genuine advantage — one fewer match to reach the same round.
Common mistakes
- Scheduling a double elimination like a knockout
- It needs about twice as many matches. Work out 2(n−1) before booking the venue, or run a group stage first and use double elimination only for the finals.
- Forgetting to decide the bracket-reset rule before the final
- Announce it at the start. Deciding after the losers' champion has won the grand final is the single most argued-about moment in this format.
- Treating the losers' bracket as a consolation event
- It is part of the same tournament — its winner plays for the title. A player who loses their opening match can still win the whole thing.
Practical tips
- Print the bracket and write results in as they happen; the sheet is laid out round by round for exactly that.
- Run winners'-bracket rounds and losers'-bracket rounds alternately so nobody is waiting for an opponent who has not played yet.
- Publish the seed word before the draw if anyone might question it afterwards.
Privacy and your data
The entrant list is read and drawn entirely in your browser. Nothing is uploaded, nothing is stored between visits, and nothing is written into the page address — so a bracket cannot be shared by sending the link, and you should copy or print it instead. Analytics records the match count and never an entrant's name.
Frequently asked questions
- How many matches will a double elimination take?
- Two for every entrant bar one — 2(n−1). Eight entrants means 14 matches, or 15 if the grand final is reset. A knockout of the same field takes 7.
- What is a bracket reset?
- The losers' champion arrives at the grand final with one defeat and the winners' champion with none. If the losers' champion wins, both have one defeat, so a second grand final is played to settle it.
- Can someone lose their first match and still win?
- Yes. That is the point of the format — a first defeat drops you into the losers' bracket, not out of the tournament.
- How is this different from the single-elimination bracket?
- That one ends your tournament on a first defeat and takes n−1 matches. This gives everyone a second life and takes about twice as long.
Related generators
- Tournament Bracket Seeding GeneratorDraw a complete single-elimination bracket — every round to the final, byes to the top seeds, and random, seeded or protected draws.
- Swiss Pairing GeneratorPair a Swiss-system round by score, avoiding rematches and sharing byes fairly — everyone keeps playing, and nobody is knocked out.
- Group Stage Draw GeneratorDraw a tournament group stage using seeding pots, so every group gets one entrant from each strength band instead of a random cluster.