Explore the following Permutation with Repetition examples to understand how to calculate arrangements in various scenarios.
Example 1: PIN Code
- Problem: How many 4-digit PIN codes can be created using the digits 0 to 9?
- Solution:
- There are 10 choices (digits 0 to 9) for each of the 4 positions.
- Since each digit can be repeated, the total number of PIN codes is: 𝑛^𝑟 = 10^4 = 10000.
- Answer: There are 10000 different 4-digit PIN codes.
Example 2: Tossing a Coin
- Problem: A coin is tossed 3 times. How many possible outcomes are there?
- Solution:
- For each coin toss, there are 2 possible outcomes: heads or tails.
- Since the coin is tossed 3 times: 𝑛^𝑟 = 2^3 =8.
- Answer: There are 8 possible outcomes for the 3 coin tosses.
Example 3: Lock Combination
- Problem: How many different 3-digit lock combinations are possible if each digit can be any number from 1 to 5?
- Solution:
- There are 5 choices (digits 1 to 5) for each of the 3 positions.
- Since each digit can be repeated, the total number of lock combinations is: 𝑛^𝑟 = 5^3 = 125.
- Answer: There are 125 different 3-digit lock combinations possible.