mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
13 lines
294 B
JavaScript
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']
|
|
};
|