WorksheetFunction.BinomDist Method (Excel)

Returns the individual term binomial distribution probability.

Syntax

expression .BinomDist(Arg1, Arg2, Arg3, Arg4)

expression A variable that represents a WorksheetFunction object.

Parameters

Name

Required/Optional

Data Type

Description

Arg1

Required

Double

the number of successes in trials.

Arg2

Required

Double

the number of independent trials.

Arg3

Required

Double

the probability of success on each trial.

Arg4

Required

Boolean

a logical value that determines the form of the function. If cumulative is TRUE, then BinomDist returns the cumulative distribution function, which is the probability that there are at most number_s successes; if FALSE, it returns the probability mass function, which is the probability that there are number_s successes.

Return Value

Double

Remarks

Use BinomDist in problems with a fixed number of tests or trials, when the outcomes of any trial are only success or failure, when trials are independent, and when the probability of success is constant throughout the experiment. For example, BinomDist can calculate the probability that two of the next three babies born are male.

  • Number_s and trials are truncated to integers.

  • If number_s, trials, or probability_s is nonnumeric, BINOMDIST generates an error.

  • If number_s < 0 or number_s > trials, BinomDist generates an error.

  • If probability_s < 0 or probability_s > 1, BinomDist generates an error.

  • The binomial probability mass function is: Ff192990.awfbnmd1_ZA06051113(en-us,office.14).gifwhere: Ff192990.awfbnmd2_ZA06051114(en-us,office.14).gifis COMBIN(n,x). The cumulative binomial distribution is: Ff192990.awfbnmd3_ZA06051115(en-us,office.14).gif

See Also

Concepts

WorksheetFunction Object Members

WorksheetFunction Object