You can put this solution on YOUR website! How do I figure out how many combinations I can make from a group of numbers?
---
Let "n" be the number of distinct numbers.
---
Then the number of combinations of size r is nCr = n!/[(n-r)!*r!]
----
Examples:
8C3 = (8*7*6)/(1*2*3) = 56
=============================
Cheers,
Stan H.
===================