BINOM.INV

    Statistical

    Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value. Replaces the legacy CRITBINOM function.

    Translations
    EnglishBINOM.INV
    FrenchLOI.BINOMIALE.INVERSE
    SpanishINV.BINOM
    GermanBINOM.INV
    ItalianINV.BINOM
    PortugueseINV.BINOM
    DutchBINOM.INV
    PolishROZKŁ.DWUM.ODWR
    RussianБИНОМ.ОБР
    TurkishBİNOM.TERS
    CzechBINOM.INV
    HungarianBINOM.INVERZ
    SwedishBINOM.INV
    DanishBINOM.INV
    FinnishBINOMI.KÄÄNT
    Syntax
    BINOM.INV(trials, probability_s, alpha)

    Arguments

    • trialsThe number of Bernoulli trials
    • probability_sThe probability of success on each trial
    • alphaThe criterion value (between 0 and 1)
    Examples
    =BINOM.INV(10, 0.5, 0.75)
    6

    Smallest k where P(X ≤ k) ≥ 0.75 with n = 10, p = 0.5

    =BINOM.INV(20, 0.3, 0.95)
    9

    95% acceptance threshold for n = 20, p = 0.3

    =BINOM.INV(100, 0.5, 0.5)
    50

    Median number of successes for 100 fair coin flips

    Tips & Best Practices
    • Used in quality control and acceptance sampling
    • Returns #NUM! if trials < 0, probability_s outside 0..1, or alpha outside 0..1
    • Inverse of BINOM.DIST with cumulative = TRUE
    Common Mistakes
    • Confusing BINOM.INV with BINOM.DIST - BINOM.INV goes from a target probability to a number of successes (the inverse direction), while BINOM.DIST goes from a number of successes to a probability
    • Expecting BINOM.INV to return the exact probability requested by alpha - it returns the smallest number_s where the cumulative probability is greater than or equal to alpha, which usually overshoots slightly rather than matching exactly
    • Passing an alpha, probability_s, or trials value outside their valid ranges (0-1 for the first two, non-negative for trials), which returns a #NUM! error
    Related Functions
    BINOM.DISTPerforms the forward operation - given a number of successes, returns the corresponding cumulative probability, the inverse of what BINOM.INV calculates.
    NORM.INVPerforms a similar inverse-probability calculation for the normal distribution, sometimes used as an approximation for BINOM.INV with large trial counts.
    CRITBINOMThe legacy function that BINOM.INV replaces, with identical behavior under a different, older name.
    Frequently Asked Questions

    How is BINOM.INV different from BINOM.DIST?

    They're roughly inverse operations - BINOM.DIST takes a number of successes and returns a probability, while BINOM.INV takes a target probability (alpha) and returns the smallest number of successes needed to reach or exceed it.

    Why doesn't BINOM.INV's result give exactly the probability I specified in alpha?

    Because the binomial distribution is discrete, there usually isn't a number_s that hits alpha exactly - BINOM.INV returns the smallest number_s where the cumulative probability is at least alpha, which typically overshoots slightly.

    What's BINOM.INV commonly used for?

    Quality control and acceptance sampling - for example, determining the maximum number of defective items in a batch that would still be acceptable at a given confidence level.

    Need to translate a formula using BINOM.INV?

    Use our translator to convert your complete formula