ID EN
#Math

MULTINOMIAL

Excel Functions

Calculate the multinomial coefficient for a list of numbers

Syntax

EXCEL
=MULTINOMIAL(number1, [number2], ...)

Arguments

Parameter Description
number1 The first value.
number2 [optional] Additional values.

Return Value

The multinomial coefficient, which is a positive integer

Details

The Excel MULTINOMIAL function calculates the multinomial coefficient, which is used to determine the number of ways to assign groups of items into specified sizes. This is especially useful in combinatorics and probability, where you need to count the distinct ways to distribute items into multiple groups, regardless of the order within each group. The formula below calculates the multinomial coefficient for the numbers 3, 6, and 1: This is equivalent to: Suppose you have a bag containing 2 red marbles and 2 blue marbles. You draw all 4 marbles one by one and place them in order. We can use the MULTINOMIAL function to count the number of different sequences of colors that could be drawn. This counts the number of different color sequences possible when drawing 2 red and 2 blue marbles. Th

Examples

Example #1 - Basic usage

The formula below calculates the multinomial coefficient for the numbers 3, 6, and 1:

EXCEL
=MULTINOMIAL(3, 6, 1) // returns 840
Example #1 - Basic usage

This is equivalent to:

EXCEL
=FACT(3+6+1)/(FACT(3)*FACT(6)*FACT(1))
Example #2 - Drawing marbles from a bag

Suppose you have a bag containing 2 red marbles and 2 blue marbles. You draw all 4 marbles one by one and place them in order. We can use the MULTINOM

EXCEL
=MULTINOMIAL(2, 2) // returns 6
Example #3 - Count possible combinations

We can use the MULTINOMIAL function to count the number of distinct ways to distribute the 9 people into groups of 2, 3, and 4. The formula is:

EXCEL
=MULTINOMIAL(2, 3, 4) // returns 1260
Example #4 - Calculate probability

To start, let's calculate the probability of just one specific way to assign people to flavors: for example, the first two people pick chocolate, the

EXCEL
=(0.5^2) * (0.35^3) * (0.15^4) // 7.75195E-06
Example #4 - Calculate probability

This value is quite small, because it only accounts for one possible way the outcome could occur. In reality, there are 1260 different ways to assign

EXCEL
=MULTINOMIAL(2,3,4) * (0.5^2) * (0.35^3) * (0.15^4) // 0.006837223

See Also

FACT COMBIN PERMUT COMBINA