When you open Hextech chests or roll for a specific item in League of Legends, the displayed drop rate is a per-attempt chance — not a guarantee over a session. This calculator combines that single-roll probability across however many attempts you make, so you can see your true chance of getting at least one drop and how many tries it really takes to be confident.
How it works
Each attempt is an independent trial with success probability p. The
probability of missing on a single attempt is 1 − p, and the probability of
missing on all N independent attempts is the product:
P(zero drops) = (1 − p)^N
P(at least one) = 1 − (1 − p)^N
The expected number of drops over N attempts is N × p. To answer the
reverse question — how many attempts you need for a target confidence c — the
tool solves the same equation for N:
N = ceil( ln(1 − c) / ln(1 − p) )
If you enter the rate as one-in-N, the tool first converts it to a probability
with p = 1 / N before running the same math.
Example
A skin shard with a 3.6 percent per-chest chance, opened 20 times, gives an
at-least-once probability of 1 − (1 − 0.036)^20 ≈ 52%. That is barely a coin
flip even after 20 chests, which surprises most players. To reach 90 percent
confidence you would need about 63 chests.
Notes
Because standard League loot has no pity protection, a long miss streak is never impossible — only less likely. Use the 99 percent row as a realistic worst-case budget rather than the 50 percent row, which half of players will fall short of.