Difference between revisions of "Documentation/How Tos/Calc: COMBIN function"
From Apache OpenOffice Wiki
< Documentation | How Tos
OOoWikiBot (talk | contribs) m (Robot: Automated text replacement %s) |
m |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | __NOTOC__ | + | {{DISPLAYTITLE:COMBIN function}} |
+ | {{Documentation/CalcFunc MathematicalTOC | ||
+ | |ShowPrevNext=block | ||
+ | |PrevPage=Documentation/How_Tos/Calc:_ABS_function | ||
+ | |NextPage=Documentation/How_Tos/Calc:_COMBINA_function | ||
+ | }}__NOTOC__ | ||
== COMBIN == | == COMBIN == | ||
Line 20: | Line 25: | ||
: returns <tt>'''3'''</tt>. | : returns <tt>'''3'''</tt>. | ||
− | {{ | + | {{SeeAlso|EN| |
* [[Documentation/How_Tos/Calc: COMBINA function|COMBINA]] | * [[Documentation/How_Tos/Calc: COMBINA function|COMBINA]] | ||
* [[Documentation/How_Tos/Calc: PERMUT function|PERMUT]] | * [[Documentation/How_Tos/Calc: PERMUT function|PERMUT]] | ||
− | * [[Documentation/How_Tos/Calc: PERMUTATIONA function|PERMUTATIONA]] | + | * [[Documentation/How_Tos/Calc: PERMUTATIONA function|PERMUTATIONA]] |
− | * [[Documentation/How_Tos/Calc: Mathematical functions|Mathematical functions]] | + | * [[Documentation/How_Tos/Calc: Mathematical functions|Mathematical functions]] |
* [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]] | * [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]] | ||
* [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}} | * [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}} | ||
+ | [[Category: Documentation/Reference/Calc/Mathematical functions]] |
Latest revision as of 15:07, 31 January 2024
Trigonometric
Hyperbolic
Rounding and remainders
Logarithm/Powers
Bessel functions
Miscellaneous
COMBIN
Returns the number of combinations of a subset of items.
Syntax:
COMBIN(n; k)
- n is the number of items in the set.
- k is the number of items to choose from the set.
- COMBIN returns the number of ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC.
- COMBIN implements the formula:
- n!/(k!(n-k)!)
Example:
COMBIN(3,2)
- returns 3.
See Also