Permutations (Ordered Selections)

\( _{n}P_{r}=\tfrac{n!}{(n-r)!} \)
Probability GCSE
Question 11 of 20

Arrange 3 digits from 6.

Tips: use ^ for powers, sqrt() for roots, and type pi for π.
Hint (H)
\( Use nPr = n!/(n-r)!. \)

Explanation

Show / hide — toggle with X

Statement

The permutation formula counts the number of ordered arrangements of objects chosen from a larger set. It is given by:

\[ {}^nP_r = \frac{n!}{(n-r)!} \]

Why it’s true

  • There are \(n\) choices for the first object, \((n-1)\) choices for the second, and so on until \(r\) objects are chosen.
  • This product is equivalent to \(\frac{n!}{(n-r)!}\), because the remaining \((n-r)\) factors of \(n!\) cancel out.

Recipe (how to use it)

  1. Identify the total number of objects (\(n\)) and the number selected (\(r\)).
  2. Compute \(n!\).
  3. Compute \((n-r)!\).
  4. Divide: \(\frac{n!}{(n-r)!}\).

Spotting it

Use permutations when order matters — for example, arranging people in a line, assigning positions, or creating codes.

Common pairings

  • Permutations vs combinations (order vs orderless).
  • Factorials and probability problems.
  • Code/password counting problems.

Mini examples

  1. Given: 5 people, choose 2 to arrange in order. Answer: \({}^5P_2 = 5!/3! = 20\).
  2. Given: 7 books, choose 3 for a shelf in order. Answer: \({}^7P_3 = 7!/4! = 210\).

Pitfalls

  • Using combinations instead of permutations (forgetting that order matters).
  • Calculating factorials incorrectly.

Exam strategy

  • Underline whether order matters — this decides permutation vs combination.
  • Use calculator factorial (!) key where possible.
  • Simplify fractions by canceling before multiplying.

Summary

The permutation formula \({}^nP_r = \frac{n!}{(n-r)!}\) counts ordered arrangements of \(r\) objects chosen from \(n\). Use it when order is important.

Worked examples

Show / hide (10) — toggle with E
  1. How many ways to arrange 2 people from 5?
    1. \( n=5, r=2 \)
    2. \( 5!/3!=20 \)
    Answer: 20
  2. How many ways to arrange 3 books from 7?
    1. \( n=7, r=3 \)
    2. \( 7!/4!=210 \)
    Answer: 210
  3. Arrange 2 letters from 4.
    1. \( 4!/2!=12 \)
    Answer: 12
  4. Arrange 3 digits from 6.
    1. \( 6!/3!=120 \)
    Answer: 120
  5. Arrange 4 people from 8.
    1. \( 8!/4!=1680 \)
    Answer: 1680
  6. Arrange 5 people from 9.
    1. \( 9!/4!=15120 \)
    Answer: 15120
  7. Arrange 3 prizes among 10 contestants.
    1. \( 10!/7!=720 \)
    Answer: 720
  8. Arrange 6 digits from 12.
    1. \( 12!/6!=665280 \)
    Answer: 665280
  9. Arrange 4 seats from 15 people.
    1. \( 15!/11!=32760 \)
    Answer: 32760
  10. Arrange 2 managers from 20 workers.
    1. \( 20!/18!=380 \)
    Answer: 380