Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

Loot drops and gacha pulls feel magical, but they are built from probability, algorithms, and large numbers of repeated trials. A 1% drop rate does not mean the rare item appears exactly once every 100 tries, because each pull can still be random. Understanding the math helps players read odds, compare systems, and avoid common traps like chasing a streak. It also shows why very rare drops can feel unfair even when the listed probability is true.

Key Facts

  • For one pull with drop chance p, chance of no drop is 1 - p.
  • For n independent pulls, chance of at least one drop is P = 1 - (1 - p)^n.
  • Expected number of drops in n pulls is E = np.
  • Average pulls until first success for independent trials is 1/p.
  • A pseudorandom number generator uses a seed to create a repeatable sequence that behaves like random numbers.
  • With a pity timer, the drop chance changes over time, so the trials are not identical.

Vocabulary

RNG
RNG means random number generation, the process a game uses to decide uncertain outcomes like loot drops.
Drop rate
A drop rate is the probability that a specific item appears from one attempt, chest, enemy, or pull.
Independent trial
An independent trial is an event whose outcome does not change the probability of the next event.
Expected value
Expected value is the long-run average result you would predict after many repeated trials.
Pity timer
A pity timer is a game system that increases the chance of a rare reward or guarantees it after enough failed attempts.

Common Mistakes to Avoid

  • Thinking a 1% drop is guaranteed after 100 tries. This is wrong because independent probability gives P = 1 - 0.99^100, which is about 63.4%, not 100%.
  • Believing a rare drop is due after a long dry streak. This is the gambler's fallacy because past failures do not change the next chance unless the game has a pity timer or another changing rule.
  • Confusing expected value with what will happen in a short session. An expected 2 drops over 200 pulls at 1% does not prevent getting 0, 1, 3, or more due to random variation.
  • Ignoring whether rewards are independent or weighted. Loot tables, duplicate protection, pity systems, and limited pools can change the math, so the simple formula may not apply.

Practice Questions

  1. 1 A rare item has a 2% drop chance per run. What is the probability of getting at least one rare item in 50 independent runs?
  2. 2 A gacha banner has a 0.6% chance of a featured item per pull with no pity. What is the expected number of featured items in 300 pulls, and what is the average number of pulls until the first featured item?
  3. 3 A player fails to get a 1% drop after 150 independent attempts and says the next attempt must have a much higher chance. Explain whether this is correct, and describe how your answer would change if the game used a pity timer.