Explore the following Combination of Set examples to learn how to find different ways to choose items in various contexts.
Example 1: Combinations of a Set of Numbers
- Problem: How many ways can a subset of 2 elements be chosen from the set {1, 2, 3, 4}?
- Solution: Using combination formula: 4! / [2! × (4 - 2)!] = 6.
- Answer: There are 6 ways to choose the subset.
Example 2: Combinations of a Set of Letters
- Problem: How many ways can a subset of 3 letters be chosen from the set {A, B, C, D, E}?
- Solution: Using combination formula: 5! / [3! × (5 - 3)!] = 10.
- Answer: There are 10 ways to choose the subset.
Example 3: Combinations of a Set of Colors
- Problem: How many ways can a subset of 4 colors be selected from the set {Red, Blue, Green, Yellow, Black, White}?
- Solution: Using combination formula: 6! / [4! × (6 - 4)!] = 15.
- Answer: There are 15 ways to choose the subset.