We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Couldn't load subscription status. Retry
There was an error while loading. Please reload this page.
Get ways to put n objects in m bins (n=sum(ki)). 📦 😺 🏃 📼 🌔 📜 📰 📘
Similar: binomial, multinomial.
math.multinomial(k); // k: objects per bin (ki)
const math = require("extra-math"); math.multinomial(1, 2); // 3 math.multinomial(1, 2, 3); // 60 math.multinomial(1, 2, 3, 4); // 12600