Splitting a fixed prize pool
Contest and tournament organizers often start from a fixed budget and need ranked payouts: a large top prize, then smaller amounts for lower places. Two common planning styles are a halving curve (steep, automatic) and explicit percentages (fully tunable). Both turn one total into five tier amounts used on this hub.
Explore the steep automatic curve with the double / halving splitter. Dial exact shares with the percentage splitter.
Shared vocabulary on this hub
Outputs are labeled for a five-tier ladder (terminology varies by locale):
- Top prize (first-place tier)
- 2nd through 5th prizes (ambo, terna, quaterna, cinquina in Italian-influenced naming)
The underlying math is currency-agnostic: plain numbers that you format as euros, dollars, or tokens elsewhere. Taxes, platform fees, and physical merchandise are outside the model.
Family of calculators
- Double (halving method) — walk from the lowest tier upward, repeatedly assigning about half of what remains (
round(remaining / 2)), then attach leftover cents so the shares sum exactly to the total. Resulting arrays run smallest → largest (top) tier. - Percentage method — assign each of the five places a percent share you choose; amounts are the total multiplied by each percent (subject to your rounding policy).
Example for halving with total 1000 and five tiers: roughly [31, 63, 125, 250, 531] (sum 1000). The top tier dominates after successive remainder halvings.
When halving is enough
Use the double method when:
- You want a classic “winner takes about half the pot” feel without tuning five sliders
- The event is informal and the steep curve is socially expected
- You need a quick card of numbers before printing certificates
Halving is a heuristic, not a fairness theorem. Adjacent tiers may differ by one currency unit after rounding. It does not model probability of winning or expected value for entrants.
When percentages are better
Use the percentage method when:
- Sponsors require published share tables (for example 40% / 25% / 15% / 12% / 8%)
- Legal or house rules mandate minimum payouts for lower places
- You need to flatten or steepen the curve deliberately
Percentages must be consistent with your event rules—whether they must sum to 100%, whether ties split a tier, and whether you round half-up per line then adjust the top prize to fix residual cents.
Designing a payout ladder
Practical checklist:
- Fix the pool after fees (or decide fees come out of the pool).
- Choose five-place versus other structures; these tools assume five tiers.
- Decide steep versus flat philosophy.
- Run halving once as a reference curve.
- Switch to percentages if stakeholders want explicit control.
- Document rounding and tie-break rules before the contest starts.
Changing the method after results are known invites disputes—publish the algorithm early.
Rounding and exact sums
Floating money is hostile to rounds. The halving helper assigns rounded halves and pours remainder into the last slot so the vector sums to T. Percentage splits need a similar reconciliation step if you round each line to cents. Always verify sum(tiers) === total in tests.
Negative totals and invalid tier counts are rejected. Zero pools yield zeros—useful as a guard in UIs, not as a contest design.
Relation to probability tools
Prize splits answer “how do we divide a known pot?” Combinatorial tools answer “how many outcomes exist?” They are separate problems. A steep payout does not change the combinatorial odds of selecting winning numbers unless your game rules say otherwise.
Financial disclaimer
Prize-pool figures are illustrative planning aids only. They are not financial, tax, legal, or wagering advice. Confirm contest, consumer-protection, and tax rules in your jurisdiction. Treat calculator outputs as estimates until accounting, withholding, and legal requirements are applied. Do not present these splits as guarantees of winnings.
Worked planning scenario
Suppose a club quiz has a €500 pot and wants five cash places. Halving might yield a ~€265 top prize with small consolation amounts. If the club prefers more money in 3rd–5th, switch to percentages such as 35 / 25 / 20 / 12 / 8 and recompute. Compare both tables with organizers before announcing.
Limits
- No multi-currency conversion
- No sponsor product valuation
- No progressive jackpots that grow with entries
- No modeling of entry-fee breakage or charity carve-outs unless you subtract them from
Tfirst
Summary
This hub offers two ways to carve a fixed five-tier prize pool: automatic remainder halving for a steep curve, and explicit percentages for full control. Use them to draft transparent payout tables, verify exact sums after rounding, and keep math separate from legal and tax obligations that still require human review.