← All guides

The house edge math behind crash

Last updated: August 22, 2026

Every bustabit-lineage crash game hides its entire personality in one number: the house edge, the margin the operator earns in a real-money crash casino. Bustabid borrows the same parameter, set at 4 percent, but here it earns nothing and taxes nothing, because we keep every entry's face value on the board regardless of the outcome. On Bustabid the number is purely a game-feel knob. This guide shows exactly what the knob does.

What is the formula?

Each round's bust point comes from its provably fair round hash (see how the hash is derived). Take the first 32 bits of the hash as an integer h, then:

crash = max(1.00, (2^32 / (2^32 - h)) * 0.96)

Since h is uniform over its 2^32 possible values, the raw ratio 2^32 / (2^32 - h) follows an inverse-uniform distribution: it equals at least x exactly 1/x of the time. Multiplying by 0.96 shifts the whole distribution down 4 percent, and the max() clamps anything that falls below 1.00 up to an instant bust. Two consequences drop straight out of that 0.96.

What does the distribution actually look like?

Why is it called an edge in real-money games?

In a crash casino, a player who always cashes out at a target x wins x times their bet with probability 0.96/x, and loses the bet otherwise. The expected return per dollar bet is x times 0.96/x, which is 0.96, for every target. Cash out early, cash out late, it does not matter: every strategy returns 96 cents on the dollar in expectation, and the missing 4 cents is the operator's margin. That flat 4 percent across all strategies is what makes the parameter a true house edge. Stake's Crash runs the same construction at 1 percent: friendlier returns, fewer brutal instant busts, a slightly tamer show.

Why is Bustabid's 4 percent not revenue?

Because Bustabid's economics do not run through the multiplier at all. When you place an entry, the payment buys leaderboard placement, and that placement is guaranteed at face value in every outcome. We keep 100 percent of every entry whether the round busts at 1.00x or flies to 900x, and nothing on the board is ever redeemable for money. There is no payout for the edge to tax. The multiplier only sizes a bonus applied to a non-cash placement score.

The score math is also friendlier than the casino math, because the floor is different. In a crash casino a missed cash out returns zero. On Bustabid a missed cash out returns face value, a 1.00x placement, never zero. For an entrant who targets a cash out at x, the expected placement score works out to entry times (1.96 minus 0.96/x): about 1.48 times face value at a 2x target, about 1.77 at 5x. Every target produces an expected placement above what you paid, which is the arithmetic signature of a product where chance can only add.

So why keep the parameter at all?

Drama. The 4 percent instant-bust rate is the genre's jump scare: every round opens with a 1-in-25 chance of dying on the spot, which is exactly what makes surviving feel like something. The 0.96 also drags the median under 2x, keeping rounds short and the cadence fast, about 90 rounds an hour. For us it is a tunable knob for how the game feels, measured against how often entrants actually cash out, not a revenue dial. You can audit the distribution yourself: every settled round in the round history shows its bust point with a verification link, and the crash mechanic guide covers what those numbers feel like from the board.