2014-01-07 13:40:54 +02:00

13 lines
294 B
JavaScript

module.exports = {
'name': 'combinations',
'category': 'Probability',
'syntax': [
'combinations(n, k)'
],
'description': 'Compute the number of combinations of n items taken k at a time',
'examples': [
'combinations(7, 5)'
],
'seealso': ['permutations', 'factorial']
};