Permutations, combinations and factorial Flashcards
1
Q
Finish P,20,3)..
A
> 20! / 171
>
2
Q
How many non-repetitive words of length 4 can you make from the letters {a, b, c, d, e, f}?
A
As there is 6 letters you do 6! / 4!
>
6 x 5 x 4 x 3 x 2 x 1
4 x 3 x 2 x 1
> > 720 / 24
= 30
3
Q
What is a Permutation?
A
The number of ways a set can be arranged
4
Q
What is a combination?
A
When the order doesn’t matter
5
Q
How many binary strings of length 8 contain equal number of 0 and 1?
Hint: the order does not matter so it is a combination
A
- 8 positions
** four 1’s
So…
C(8,4) =
> 8! / 4!(4)! =
» 8x7x6x5 / 4x3x2x1 =
»> 70