Configure the event and trials
Define a single event with a known probability (like "customer converts", "die shows 1", or "email is opened"), specify how many independent trials you're running, and choose the outcome you want to calculate the probability for (exactly \(k\) successes, at least \(k\), at most \(k\), or between two values).
A short description of the event you're tracking (e.g., "customer converts", "email opened", "die shows 1").
The probability that the event occurs on a single trial. For a six-sided die showing 1, this is \(1/6 \approx 0.1667\).
How many independent trials you're running. For dice, this is the number of rolls.
The threshold you care about—used for "exactly", "at least", or "at most" calculations.
Choose whether you want the probability of exactly \(k\) successes, at least \(k\), at most \(k\), or a range.
Use exact binomial or choose an approximation (normal works when \(n\) is large; Poisson when \(n\) is large and \(p\) is small).
How many Monte Carlo simulations to run for comparison with theoretical probabilities.
More about these settings
Event probability \(p\): the chance the event happens on a single trial. For a fair coin, \(p = 0.5\); for a six-sided die showing 1, \(p = 1/6 \approx 0.1667\); for a marketing conversion rate of 3%, \(p = 0.03\).
Number of trials \(n\): how many times you repeat the event. For dice, this is rolls; for marketing, this might be ad impressions, email sends, or website visits.
Target successes \(k\): the specific count you're interested in. If you want to know the probability of seeing exactly 7 conversions out of 100 visitors, set \(k = 7\) and choose "Exactly \(k\)".
Approximation modes: the exact binomial is always correct but can be slow for very large \(n\). The normal approximation works well when \(np \ge 10\) and \(n(1-p) \ge 10\). The Poisson approximation is useful when \(n\) is large and \(p\) is small (typically \(np < 10\)).