Difference between revisions of "Documentation/How Tos/Calc: COMBINA function"

From Apache OpenOffice Wiki
Jump to: navigation, search
(Initial content)
 
m
 
(11 intermediate revisions by 5 users not shown)
Line 1: Line 1:
__NOTOC__
+
{{DISPLAYTITLE:COMBINA function}}
 +
{{Documentation/CalcFunc MathematicalTOC
 +
|ShowPrevNext=block
 +
|PrevPage=Documentation/How_Tos/Calc:_COMBIN_function
 +
|NextPage=Documentation/How_Tos/Calc:_CONVERT_function
 +
}}__NOTOC__
  
 
== COMBINA ==
 
== COMBINA ==
Returns the number of ordered combinations of a subset of items.
+
Returns the number of combinations of a subset of items.
 
+
  
 
=== Syntax: ===
 
=== Syntax: ===
<tt>'''COMBINA(setsize; subsetsize)'''</tt>
+
<tt>'''COMBINA(n; k)'''</tt>
: <tt>'''setsize'''</tt> is the number of items in the set.
+
: <tt>'''n'''</tt> is the number of items in the set.
  
: <tt>'''subsetsize'''</tt> is the number of items to choose from the set.
+
: <tt>'''k'''</tt> is the number of items to choose from the set.
  
: <tt>'''COMBINA'''</tt> returns the number of ways to choose these items, where the order of choosing is important. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AB, BA, AC, CA, BC and CB.
+
: <tt>'''COMBINA'''</tt> returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC; you can choose 3 items in 10 different ways, namely AAA, AAB, AAC, ABB, ABC, ACC, BBB, BBC, BCC, CCC.
  
 
: <tt>'''COMBINA'''</tt> implements the formula:
 
: <tt>'''COMBINA'''</tt> implements the formula:
  
:: <tt>'''setsize!/(setsize-subsetsize)!'''</tt>
+
:: <tt>'''(''n''+''k''-1)!/(''k''!(''n''-1)!)'''</tt>
 
+
  
 
=== Example: ===
 
=== Example: ===
Line 22: Line 25:
 
: returns <tt>'''6'''</tt>.
 
: returns <tt>'''6'''</tt>.
  
 +
<tt>'''COMBINA(3,3)'''</tt>
 +
: returns <tt>'''10'''</tt>.
 +
 +
{{SeeAlso|EN|
 +
* [[Documentation/How_Tos/Calc: COMBIN function|COMBIN]]
 +
* [[Documentation/How_Tos/Calc: PERMUT function|PERMUT]]
 +
* [[Documentation/How_Tos/Calc: PERMUTATIONA function|PERMUTATIONA]]
  
=== See also: ===
+
* [[Documentation/How_Tos/Calc: Mathematical functions|Mathematical functions]]
'''[[Documentation/How_Tos/Calc: COMBIN function|COMBIN]]'''
+
  
'''[[Documentation/How_Tos/Calc: Mathematical functions|Mathematical functions]]'''
+
* [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]]
 +
* [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}}
 +
[[Category: Documentation/Reference/Calc/Mathematical functions]]

Latest revision as of 15:08, 31 January 2024

COMBINA

Returns the number of combinations of a subset of items.

Syntax:

COMBINA(n; k)

n is the number of items in the set.
k is the number of items to choose from the set.
COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC; you can choose 3 items in 10 different ways, namely AAA, AAB, AAC, ABB, ABC, ACC, BBB, BBC, BCC, CCC.
COMBINA implements the formula:
(n+k-1)!/(k!(n-1)!)

Example:

COMBINA(3,2)

returns 6.

COMBINA(3,3)

returns 10.



See Also
Retrieved from "https://wiki.openoffice.org/w/index.php?title=Documentation/How_Tos/Calc:_COMBINA_function&oldid=259882"
Views
Personal tools
Navigation
Tools
In other languages