Difference between revisions of "Manuals/calci/COMBIN"
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
*This function will give Error Result when | *This function will give Error Result when | ||
#The <math>n</math> & <math>r</math> are non numeric | #The <math>n</math> & <math>r</math> are non numeric | ||
− | #The <math>n</math> & <math>r</math> < 0 < | + | #The <math>n</math> & <math>r</math> < 0 <math> or <math>n < r</math> |
*When we are giving the <math>n</math> & <math>r</math> values in decimals, it will automatically convert into Integers. | *When we are giving the <math>n</math> & <math>r</math> values in decimals, it will automatically convert into Integers. | ||
*For e.g. | *For e.g. |
Revision as of 23:38, 18 November 2013
COMBIN(n,r)
- is the number of items.
- is the number of items in each arrangement.
Description
- This function gives the combination of objects.
- i.e. An arrangement of objects without any repetition, selected from different objects is called a combination of objects taken at a time.
- Also if the order is not a matter, it is a Combination.
- If order is a matter it is a Permutation.
- A combination is denoted by nCr or .
- A formula for the number of possible combinations of objects from a set of objects is where & .
- This function will give Error Result when
- The & are non numeric
- The & < 0
- When we are giving the & values in decimals, it will automatically convert into Integers.
- For e.g.
- COMBIN(5.4,2)=10 is equivalent to COMBIN(5,2)
- COMBIN(5,-2)=NAN, because is negative.
Examples
COMBIN(n,r) | n | r | RESULT |
---|---|---|---|
COMBIN(12,3) | 12 | 3 | 220 |
COMBIN(4,4) | 4 | 4 | 1 |
COMBIN(4,0) | 4 | 0 | 1 |