Permutations theory + examples

permutation is an ordering of a list of objects. For example, arranging four people in a line is equivalent to finding permutations of four objects. More abstractly, each of the following is a permutation of the letters a,b,c, and d:

→ a, b, c, d
→ a, c, d, b
→ b, d, a, c
→ d, c, b, a
→ c, a, d, b.

All possible arrangements or permutations of a,b,c,d.

Q. Lisa has 5 different ornaments she wants to arrange in a line on her mantle. How many ways can she arrange the ornaments?

Solution

Q. Jack is playing with a standard deck of 52 playing cards. He shuffles the cards and then turns the top card over to show an ace of spades. If he continues to deal the cards from the top of the deck, how many different permutations are there for the remaining cards in the deck?

Solution

Q. Suppose Ellie is choosing a secret passcode consisting of the digits 0,1,2,…,k for some k ≤ 9. She would like her passcode to use each selected digit exactly once and because she is concerned about security, she would like to choose a value of k such that the number of possible permutations is at least 250,000. What is the smallest value of k Ellie can use?

Solution

Q. How many 5-digit numbers without repetition of digits can be formed using the digits 0, 2, 4, 6, 8?

Solution

Q. How many 3-digit numbers can be formed without repetition of digits?

Solution

Q. Suppose Lisa has 13 different ornaments and would like to place 4 of the ornaments in a row on her mantle, and Anna has 12 different ornaments and would like to place 5 of the ornaments in a row on her mantle. Does Lisa have more choices in the possible number of ways to place her ornaments or does Anna?

Solution

Q.

How many arrangements can be made out of the letters of the word “BRILLIANT”?

Solution

Given a permutation problem, how do we determine which category the problem falls under and which technique should be applied to solve the problem? It may be useful to first ask yourself a few questions:

  • Are the objects all distinct?
  • How many objects are there in total?
  • How many objects are we asked to place into an ordering?
  • Are there any restrictions on the objects or on the ordering?