Combinations

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 ( a , b , c , d ) (a,b,c,d) , then they can be arranged in the following manner:

{ a b , b c , c d , a c , b d , a d } , \{ ab , bc , cd , ac , bd , ad \} ,

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.


The answer is 4950.

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.

2 solutions

Zach Abueg
Jan 26, 2017

Related Wiki: Combinations

This is a simple combinations problem. Our set is made up of 100 \displaystyle 100 elements, and we want to know how many different combinations we can make from choosing 2 \displaystyle 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 , \displaystyle ABC, ACB, BCA, BAC, CAB, and C B A \displaystyle CBA are all the same combination).

The number of combinations of k k objects chosen from n n objects is denoted by ( n k ) {n} \choose {k} = n ! k ! ( n k ) ! \displaystyle = \frac {n!}{k!(n - k)!} .

100 ! 2 ! ( 100 2 ) ! = 100 ! 2 98 ! = 100 × 99 2 = 4950 \displaystyle \frac {100!}{2!(100 - 2)!} = \frac {100!}{2 • 98!} = \frac {100 \times 99}{2} = 4950

There are 4950 \displaystyle 4950 ways to choose 2 \displaystyle 2 objects from 100 \displaystyle 100 .

Conor Donovan
Jan 26, 2017

( 100 2 ) 100 \choose 2 = 4950

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...