MULTINOMIAL function
MULTINOMIAL(First,
Other...) MULTINOMIAL(First;
Other...)
First
Number or { Number }
The first parameter.
Other
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!)
).