1.4.1 Sampling without Replacement Flashcards

(22 cards)

1
Q

What does ‘sampling without replacement’ mean?

A

Once you pick an item, it’s gone — no take-backs. You don’t put it back in the set.

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

Why is sampling without replacement important in counting?

A

Because it affects how many choices you have at each step — each pick shrinks the pool.

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

What is the definition of a factorial?

A

$n! = n \cdot (n-1) \cdot (n-2) \cdots 1$, with $0! = 1$

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

What does $n!$ represent?

A

The number of ways to arrange $n$ distinct elements in order.

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

If you have 3 digits (1, 2, 3), how many three-digit numbers can you make using all of them once?

A

3! = 6

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

What is a permutation?

A

An arrangement of items where order matters.

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

What is the formula for the number of r-permutations of n items?

A

$$ P(n, r) = \frac{n!}{(n - r)!} $$

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

When do you use permutations?

A

When the order of selection matters, and there’s no replacement.

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

How many 2-digit numbers can be made from digits {2,3,4,5} with no repeats?

A

P(4, 2) = 4 * 3 = 12

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

What’s the main difference between combinations and permutations?

A

In combinations, order does NOT matter.

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

What is the formula for the number of r-combinations of n items?

A

$$ \binom{n}{r} = \frac{n!}{r!(n-r)!} $$

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

Why divide by $r!$ in combinations?

A

To account for overcounting all the rearrangements of the same group.

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

How many 2-sock pairs can you make from 5 socks?

A

$\binom{5}{2} = 10$

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

If order doesn’t matter and there’s no replacement, which technique do you use?

A

Combination.

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

What is a partition in probability?

A

Dividing $n$ items into disjoint groups whose union is the whole set.

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

What is the formula for partitioning $n$ items into $k$ groups of sizes $n_1, n_2, …, n_k$?

A

$$ \frac{n!}{n_1! \cdot n_2! \cdots n_k!} $$

17
Q

Why divide by all the $n_i!$’s in a partition?

A

To remove overcounting due to identical groupings.

18
Q

What if some elements are repeated (e.g., 3 A’s and 2 B’s)? How do you count distinct permutations?

A

Use partitioning: $$ \frac{n!}{r_1! \cdot r_2! \cdots} $$

19
Q

When should you use factorials?

A

When arranging all $n$ distinct items in order.

20
Q

When should you use permutations?

A

When arranging some $r \leq n$ items, where order matters.

21
Q

When should you use combinations?

A

When selecting items without regard to order.

22
Q

When should you use partitions?

A

When breaking items into multiple unordered groups, or when items are not all distinct.