First time here? Checkout the FAQ!
x
+1 vote
221 views
asked in general by (160 points)  
Given the questions:

1. How many different groups of 4 students can be made from a class of 40?

and

2. How many different lists of 4 students can be made from a class of 40?

How do you determine which requires a permutation and which requires a combination?
  

1 Answer

+1 vote
answered by (115k points)  

The key is finding out if the order of items are important or not. If the order does matter, it will be permutation, otherwise it is combination. 

In these two examples, we should think about context of the words "Groups" and "Lists". For Groups, the order is NOT important, but because Lists comes with the  index, and the order does matter. So, the first question is combination and the second one is permutation.

Combination:

1. How many different groups of 4 students can be made from a class of 40?

Answer:  $C(40,4) = \binom{40}{4} = \frac{40!}{4!(40-4)!} $

Permutation: 

2. How many different lists of 4 students can be made from a class of 40?

Answer:  $P(40,4)  = \frac{40!}{(40-4)!} $

Related questions

0 votes
1 answer 303 views
+2 votes
1 answer 693 views
+1 vote
0 answers 128 views
+2 votes
1 answer 220 views
...