Returns the number of ways k objects can be selected from n without replacement where the order of the selected objects matters.
A basket of fruit contains an apple, an orange and a banana. Find the number of ways I can pick 2 fruit out of the basket where the order is important.
This is easy enough to list out by hand:
The order is important: ie. The set {apples, oranges} is counted as a different set than {oranges,apples}
Using POWER BI write:
permutations = PERMUT(3,2)
Returns the number of ways k objects can be selected from n where the order does NOT matter.
A basket of fruit contains an apple, an orange and a banana. Find the number of ways I can pick 2 fruit out of the basket where the order does not matter.
Using POWER BI write:
combinations = COMBIN(3,2)
You purchase one lotto 6-49 ticket. The win the jackpot, you need to guess 6 numbers from 49. What are the odd?
Using POWER BI write:
combinations = COMBIN(49,6)
That returns about 14 million different combinations. So the odds are approx. 1 in 14 million. The order of drawing 6 numbers correctly does not matter. If the order did matter, you would need to mutliply the number of combinations by 6! So the odds would go down to 1 in 10,068,347,520. In otherwords, it would take a really long time to get a winner.
Permutations and Combinations are related as follows:
PERMUT(n,k) = COMBIN(n,k) * FACT(k)
Mathematically the relationship is given as: