Introduction
Many word-arrangement problems include repeated letters. When letters repeat, some arrangements look identical - we must divide by the factorial of each repeat count to avoid overcounting.
This pattern is important because counting correctly with repeats is a common exam topic and appears in anagrams, license-plate style problems, and arrangement puzzles.
Pattern: Repeated Letters in Words
Pattern
If a word has n letters where certain letters repeat - counts p, q, r, … - the number of distinct arrangements is:
Total = n! / (p! × q! × r! × ...)
Idea: Start with n! (arranging all letters as if distinct) then divide by the factorial of each repeated-letter frequency because each group of identical letters can be permuted internally without creating a new distinct arrangement.
Step-by-Step Example
Question
How many distinct arrangements can be formed from the letters of the word BALLOON?
Solution
-
Step 1: Count total letters and repeats.
The word BALLOON has n = 7 letters. Letter counts: B = 1, A = 1, L = 2, O = 2, N = 1. -
Step 2: Choose the formula.
Usen! / (p! × q! × ...)where p, q are repeat frequencies. Here repeats are L (2 times) and O (2 times). -
Step 3: Substitute values.
Total = 7! / (2! × 2!) -
Step 4: Compute step-by-step.
- 7! = 7 × 6 × 5 × 4 × 3 × 2 × 1 = 5040.
- 2! = 2; so 2! × 2! = 2 × 2 = 4.
- Total = 5040 ÷ 4 = 1260.
-
Final Answer:
There are 1260 distinct arrangements of BALLOON. -
Quick Check:
If L and O were treated as distinct letters we'd get 7! = 5040 arrangements; dividing by 2! for L and 2! for O removes duplicate internal swaps → 5040 ÷ (2 × 2) = 1260 ✅
Quick Variations
1. If three letters repeat with frequencies p, q, r, use n! / (p! q! r!).
2. If you arrange only a subset containing repeats, count frequencies in that subset and apply the same division rule.
3. For circular arrangements with repeats, compute linear arrangements with repeats then divide by n (if rotations identical) - be careful with symmetry and repeated-block effects.
Trick to Always Use
- Step 1 → Count total letters n and list frequencies of each repeated letter.
- Step 2 → Compute n! first (or the top r factors if simplifying), then divide by the factorial of each repeat count.
- Step 3 → Do a quick sanity check: result must be an integer and ≤ n!.
Summary
Summary
When letters repeat, start from n! and divide by factorials of each repeated-letter frequency:
- Formula: n! / (p! × q! × ...).
- Always list letter counts first - that prevents mistakes.
- Quick check: result is an integer and less than or equal to n!; test with a small example to verify logic.
