You can put this solution on YOUR website! If the police have 7 suspects, how many different ways can they select 5 for a lineup?
.
Since it doesn't matter which order the suspects line up, it is a "combination" as opposed to a "permutation".
.
Combination:
nCr = (n!)/[r!(n-r)!]
.
In our case:
n = 7
r = 5
.
nCr = (7!)/[5!(7-5)!]
nCr = (7!)/[5!(2)!]
nCr = (1*2*3*4*5*6*7)/[(1*2*3*4*5)(1*2)]
Canceling like-terms:
nCr = (6*7)/[(1*2)]
nCr = (42)/(2)
nCr = 21