Formualizer Docs
ReferenceFunctionsStatistics Functions

BINOM.DIST

BINOM.DIST: Returns the binomial probability for a count of successes across independent trials.

Summary

Use BINOM.DIST to evaluate either exact-success probability (PMF) or cumulative probability up to a success count (CDF).

Remarks

  • number_s and trials are truncated to integers.
  • Requires 0 <= number_s <= trials, trials >= 0, and 0 <= probability_s <= 1.
  • Set cumulative to non-zero for CDF mode, or 0 for PMF mode.
  • Returns #NUM! for invalid count or probability ranges.

Examples

Binomial PMF for exactly 3 successes
Grid
CellValue
No inputs on Sheet1.
Formula
=
Result
Not evaluated yet.
Expected
0.1171875
Binomial CDF for at most 3 successes
Grid
CellValue
No inputs on Sheet1.
Formula
=
Result
Not evaluated yet.
Expected
0.171875

Runtime metadata

Category

Statistics

Signature

BINOM.DIST(arg1: Number, arg2: Number, arg3: Number, arg4: Number)

Arity

min 4, max 4

Arguments

arg1

Number · Scalar · coercion NumberLenientText

arg2

Number · Scalar · coercion NumberLenientText

arg3

Number · Scalar · coercion NumberLenientText

arg4

Number · Scalar · coercion NumberLenientText

Caps

PURE

Source

On this page