Drop Probability Formulas: The Three You Actually Need
Every “am I dry?” question reduces to one of three calculations. The OSRS dry calculator runs all three; this page defines them so you can check the output or work a case it does not cover.
Throughout: n is the drop rate denominator (the 512 in 1/512) and k is your kill count.
The model, and its one assumption
Each kill is treated as an independent trial with a fixed probability 1/n of producing the drop. Independent means the result of one kill carries no information about the next — the standard Bernoulli-trial setup that the NIST handbook describes for binomial processes.
That assumption is what makes the arithmetic simple, and it is the assumption to check before trusting a result. It holds for ordinary drop-table rolls. It does not hold where a game mechanic explicitly adds memory, such as systems with thresholds or guaranteed drops after a set number of attempts. If the item you are grinding has a mechanic like that, these formulas will be wrong in your favour — they will understate your real odds.
Formula 1 — chance you would have it by now
P = 1 − (1 − 1/n)^k
Read it right to left: (1 − 1/n) is the chance of missing on a single kill, raising it to the power k is the chance of missing every kill, and subtracting from 1 gives the chance of at least one success.
Worked: 1,000 KC on a 1/512 drop.
1 − (1 − 1/512)^1000 = 1 − 0.1416 = 85.8%
So 85.8% of players would have the drop by this point. This is the headline number the calculator returns.
Formula 2 — kills for a target confidence
k = ln(1 − target) ÷ ln(1 − 1/n)
This is formula 1 rearranged for k. target is a decimal — 0.9 for 90%.
Worked at 1/512:
| Target | Kills |
|---|---|
| 50% | 355 |
| 63.2% | 512 |
| 90% | 1,178 |
| 99% | 2,356 |
Note the shape: going from 50% to 90% costs 823 extra kills; going from 90% to 99% costs another 1,178. Each additional slice of certainty is more expensive than the last, and no finite kill count reaches 100% — the curve approaches it without arriving.
Formula 3 — share of players still dry
S = (1 − 1/n)^k
This is just 1 − P, but it is worth stating separately because it answers a different question: not “how likely was I to have it” but “how many people in my position are still waiting”.
Worked: 2,000 KC at 1/512 gives S = 2.0% — roughly 1 player in 50 is still dry there. That framing is far more useful for judging a streak than a raw percentage, and it is what the how unlucky am I guide uses to rank a dry streak.
Two constants that fall out
The 63.2% rule. Set k = n and the result converges to 1 − 1/e ≈ 63.2% as n grows. It holds for 1/100 and 1/10,000 alike. Reaching your “expected” kill count without the drop is therefore the normal outcome for about a third of players, not a sign of bad luck.
The median is 0.693 × n. Setting the target to 50% in formula 2 gives k = ln(0.5) ÷ ln(1 − 1/n), which for any reasonably large n lands at 0.693n — the natural log of 2. Half of all players finish before this point, which is well short of the expected count. The expected vs median kill count article covers why the two differ and which one to plan around.
Common variations
Multiple distinct uniques from one table. Each unique has its own rate; treat them separately. The chance of having all of them is the product of the individual probabilities, which drops fast — three items each at 80% gives 0.8³ = 51%.
Rates that change. Some drop rates scale with a difficulty or invocation setting. Use the rate that applied at the time of those kills; if it changed partway, split the calculation into two runs and combine: overall miss chance is the product of the two miss chances.
Multiple rolls per kill. If a boss rolls its unique table more than once per kill, the effective per-kill miss chance is (1 − 1/n) raised to the number of rolls. Confirm the roll count on the OSRS Wiki before assuming one.
What these formulas cannot tell you
They describe a population of players, not your account. A 2% figure means 2% of players in your position are still dry — you are simply one of them. It says nothing about when your drop arrives, and it never makes the next kill more likely. That distinction is the subject of the common drop rate mistakes article, and it is the single most misread part of dry maths.
References & Sources
- [1] NIST/SEMATECH e-Handbook - Binomial Distribution (opens in new tab)
Supports: Authoritative definition of independent Bernoulli trials and the binomial parameters used by these formulas.
Verified
- [2] NIST/SEMATECH e-Handbook - Gallery of Distributions (opens in new tab)
Supports: Reference gallery of discrete and continuous probability distributions and their properties.
Verified
- [3] Old School RuneScape Wiki - Drop Rate (opens in new tab)
Supports: Per-roll drop rate definitions and the independent-roll model used in OSRS drop tables.
Verified