MULTINOMIAL function
MULTINOMIAL(firstParameter, otherParameters...) MULTINOMIAL(firstParameter; otherParameters...)
firstParameter
Number or { Number }
The first parameter.
otherParameters
Number or { Number } (accepts many)
Additional parameters.
Returns
Number
A ratio.
Returns the factorial of the sum of a set of numbers divided by the product of the factorials of the same numbers.
Examples
MULTINOMIAL(1,
2)MULTINOMIAL(1;
2)
Returns 3 ((1 + 2)! / (1! * 2!)
).
MULTINOMIAL({ 1 },
2)MULTINOMIAL({ 1 }; 2)
Returns 3 ((1 + 2)! / (1! * 2!)
).
MULTINOMIAL({ 1 },
{ 2 })MULTINOMIAL({ 1 };
{ 2 })
Returns 3 ((1 + 2)! / (1! * 2!)
).
MULTINOMIAL({ 1,
2 })MULTINOMIAL({ 1; 2 })
Returns 3 ((1 + 2)! / (1! * 2!)
).