Multiplying a drop rate by your number of runs is the classic farming mistake — it overstates your odds and can exceed 100 percent. This calculator uses correct binomial probability to tell you the real chance of at least one drop, the average number you should expect, and how many attempts hit common confidence levels.
How it works
Attempts are independent, so the math is binomial:
P(at least one) = 1 − (1 − rate)^attempts
expected drops = rate × attempts
attempts for p = ceil( ln(1 − p) / ln(1 − rate) )
The last line inverts the at-least-one formula to tell you how many runs reach a 50, 90, or 99 percent chance.
Example and tips
A 12 percent drop over 15 runs gives a 1 − 0.88^15 ≈ 85 percent chance of at least one, with an expected 1.8 drops. To be 90 percent sure you would need ceil(ln(0.1) / ln(0.88)) = 18 runs. Remember the expected value is the long-run average — a bad streak of zero drops over many runs is unlucky but entirely possible.