MAT prob&stat1 permutations and combinations Flashcards

1
Q

What is the factorial function and its significance in arrangements?

A

Factorial (n!) represents the number of ways to arrange n distinct objects.
n! = n × (n - 1) × (n - 2) × … × 1.

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

Example: How many different 5-digit numbers can be made from {1, 2, 3, 4, 5} if:
a) Digits are not repeated.
b) Digits can be reused.

A

a) 5! = 120
b) 5^5 = 3125

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

How do you arrange objects with repeated elements?

A

For n objects where some elements are repeated, divide by the factorial of the repetitions.
Number of arrangements = n! / (p1! × p2! × …).

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

Example: How many ways can the letters of “PUPPY” be arranged?

A

5! / 3! = 120 / 6 = 20 (since “P” repeats 3 times).

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

What is a permutation?

A

A permutation is an arrangement of objects where order matters.
Number of permutations: P(n, r) = n! / (n - r)!

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

Example: A club of 25 members needs 5 officials. How many ways can they be chosen?

A

P(25, 5) = 25! / 20! = 25 × 24 × 23 × 22 × 21 = 6,375,600

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

What is a combination?

A

A combination selects objects where order does not matter.
Number of combinations: C(n, r) = n! / [(n - r)! × r!].

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

Example: A committee of 5 is chosen from 25 members. How many ways can this be done?

A

C(25, 5) = 25! / [20! × 5!] = 53,130

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

How do you handle selection problems with restrictions?

A
  1. Count favorable arrangements directly or by subtraction.
  2. Apply combinations or permutations as needed.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Example: How many ways can 6 people (A, B, C, D, E, F) line up if A and B cannot stand next to each other?

A

Total arrangements: 6! = 720.
Arrangements with A and B together: 5! × 2 = 240.
Required arrangements: 720 - 240 = 480.

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

Example: I have a box of chocolates with 10 different chocolates left in it. Of these, there are 6 which I particularly like. However, I intend to offer my three friends one chocolate each before I eat the rest. What is the probability that I will be left with at least 5 chocolates that I particularly like?

A

Total ways to choose 3 chocolates: C(10, 3) = 120.
Ways where none of the liked chocolates are chosen: C(4, 3) = 4.
Ways where one liked chocolate is chosen: C(6, 1) × C(4, 2) = 6 × 6 = 36.
Favorable outcomes: 4 + 36 = 40.
Probability = 40 / 120 = 1/3.

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