Counting Rules Flashcards

1
Q

You have a set of n objects that you want to place without replacement

A

n * (n-1) * (n-2) *…*2*1 = n!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

You have a set of n objects that you want to place in r spots in a given order.

A

nPr = n!/ (n-r)!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

You have a set of n objects from which you want to place r of them in any order.

A

nCr = n!/(r!(n-r)!)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Multiplication Rule (or Sausage rule)

A

imagine you have k “bags” with n1,n2,…,nk objects inside respectively.

Then the number of ways of forming a set by selecting an element from each “bag” is :

n1*n2*…*nk

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Birthday problem

A

key: S contains n-vectors such that each entry of the vector represents the possible birthday of a SINGLE person.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Fish-in-the-lake

A

Use: when there is two or more types of objects

Where:

  • N = total number of objects
  • n = size of the sample
  • a = number of tagged objects in total
  • x = number of tagged objects in sample
How well did you know this?
1
Not at all
2
3
4
5
Perfectly