If the order doesn't matter, in how many ways can the first 100 natural numbers be grouped if we take 2 numbers in one group?
For example, if we have the set of numbers , then they can be arranged in the following manner:
so, there are 6 ways in which these 4 numbers can be paired in pairs of 2.
Bonus: What could be the general formula for this type of scenario?
Grand Bonus: Find the sum of all the combinations.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Related Wiki: Combinations
This is a simple combinations problem. Our set is made up of 1 0 0 elements, and we want to know how many different combinations we can make from choosing 2 of them, given that order does not matter (in other words, A B C , A C B , B C A , B A C , C A B , and C B A are all the same combination).
The number of combinations of k objects chosen from n objects is denoted by ( k n ) = k ! ( n − k ) ! n ! .
2 ! ( 1 0 0 − 2 ) ! 1 0 0 ! = 2 • 9 8 ! 1 0 0 ! = 2 1 0 0 × 9 9 = 4 9 5 0
There are 4 9 5 0 ways to choose 2 objects from 1 0 0 .