Introduction
Simple permutations deal with arranging objects when order matters. Many real-world problems - seating people in chairs, assigning ranks, or arranging books on a shelf - require counting ordered arrangements, not just selections.
This pattern is important because confusing order vs. selection is a common source of mistakes in aptitude tests; knowing when to use permutations gives the correct answer quickly.
Pattern: Simple Permutations (Order Matters)
Pattern
The key idea: when arranging r items from n distinct items and the order matters, use nPr.
Formula:
nPr = n × (n - 1) × (n - 2) × … × (n - r + 1) = n! / (n - r)!
Step-by-Step Example
Question
Four friends - A, B, C, D - are to sit in 2 distinct chairs in a row. In how many different ordered ways can they be seated?
Solution
-
Step 1: Identify what is given.
We have n = 4 distinct people and we want to arrange r = 2 of them in order. -
Step 2: Choose the correct formula.
Since order matters, use permutations:nPr = n! / (n - r)!. -
Step 3: Substitute and compute.
4P2 = 4! / (4 - 2)! = 4! / 2! = (4 × 3 × 2 × 1) / (2 × 1) = 4 × 3 = 12 -
Final Answer:
There are 12 ordered seating arrangements. -
Quick Check:
Pick first chair → 4 choices; pick second chair → 3 remaining → 4 × 3 = 12 ✅
Quick Variations
1. r = n → all items arranged: nPn = n! (full permutations).
2. r = 1 → nP1 = n (choosing one item with order trivial).
3. Use when assigning distinct ranks (1st, 2nd, 3rd) or forming ordered codes without repetition.
Trick to Always Use
- Step 1 → Ask: "Does order matter?" If YES, use nPr. If NO, use nCr.
- Step 2 → Compute nPr as n × (n - 1) × ... for r factors (stop after r multiplications) - faster than factorials for small r.
Summary
Summary
For ordered arrangements of r distinct items from n:
- Use nPr = n! / (n - r)!.
- Compute by multiplying the top r factors: n × (n - 1) × …
- Always check whether order matters - that decides permutation vs combination.
