UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

46 lines (41 loc) 1.43 kB
import { deepForEach } from '../../utils/collection' import { factory } from '../../utils/factory' const name = 'multinomial' const dependencies = ['typed', 'add', 'divide', 'multiply', 'factorial', 'isInteger', 'isPositive'] export const createMultinomial = /* #__PURE__ */ factory(name, dependencies, ({ typed, add, divide, multiply, factorial, isInteger, isPositive }) => { /** * Multinomial Coefficients compute the number of ways of picking a1, a2, ..., ai unordered outcomes from `n` possibilities. * * multinomial takes one array of integers as an argument. * The following condition must be enforced: every ai <= 0 * * Syntax: * * math.multinomial(a) // a is an array type * * Examples: * * math.multinomial([1,2,1]) // returns 12 * * See also: * * combinations, factorial * * @param {number[] | BigNumber[]} a Integer numbers of objects in the subset * @return {Number | BigNumber} Multinomial coefficient. */ return typed(name, { 'Array | Matrix': function (a) { let sum = 0 let denom = 1 deepForEach(a, function (ai) { if (!isInteger(ai) || !isPositive(ai)) { throw new TypeError('Positive integer value expected in function multinomial') } sum = add(sum, ai) denom = multiply(denom, factorial(ai)) }) return divide(factorial(sum), denom) } }) })