Multinominal
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Multinominal
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Given a list of numbers, calculates the factorial of their sum, divided by the product of each number's factorial.
Function signature
MULTINOMIAL(values: Array) => Number
Parameter | Description |
---|---|
Values | List of numeric values |
Examples
Formula | Return value |
---|---|
MULTINOMIAL([1, 2, 3]) | 60 |
MULTINOMIAL([3, 2, 6]) | 4620 |
MULTINOMIAL([0]) | 1 |
Was this article helpful?