Understanding Permutations Without Repetition

A permutation is an ordered arrangement where sequence matters. When you select elements without replacement—meaning once an element is chosen, it cannot be selected again—you're working with permutations without repetition. This differs from combinations, where order is irrelevant, and from permutations with repetition, where elements can be reused.

Consider a simple scenario: you have three letters (A, B, C) and want to arrange two of them. The possible orderings are AB, AC, BA, BC, CA, and CB—six total. The critical distinction here is that AB differs from BA because order matters in permutations. If this were combinations, AB and BA would count as identical.

This principle scales across fields including:

  • Cryptography and password strength analysis
  • Genetics and DNA sequence analysis
  • Scheduling and project management
  • Quality control and sampling procedures

The Permutation Without Repetition Formula

When calculating the number of ways to arrange r elements selected from n total elements, the formula below accounts for the decreasing pool of available choices at each selection step:

nPr = P(n, r) = n! ÷ (n − r)!

  • P(n, r) or nPr — Number of distinct permutations possible
  • n — Total count of distinct objects available
  • r — Number of objects selected for each arrangement
  • n! — Factorial of n (product of all integers from 1 to n)

How the Formula Works in Practice

The factorial notation (!) represents the product of all positive integers up to that number. For example, 5! = 5 × 4 × 3 × 2 × 1 = 120.

When you divide n! by (n − r)!, you're essentially eliminating the factorial terms that represent positions you're not filling. If you have 10 people and want to award 1st, 2nd, and 3rd place medals, you calculate:

10P3 = 10! ÷ (10 − 3)! = 10! ÷ 7! = 10 × 9 × 8 = 720

Notice how you multiply only the first r terms of the larger factorial. This reflects the reality: for the first position you have 10 choices, for the second you have 9 remaining choices, and for the third you have 8 remaining choices.

Common Pitfalls and Practical Considerations

Several mistakes commonly arise when working with permutation calculations.

  1. Confusing permutations with combinations — Permutations account for order (AB ≠ BA), while combinations do not. If you're arranging items in a specific sequence or awarding ranked positions, use permutations. If you're merely selecting a subset regardless of arrangement, use combinations instead.
  2. Exceeding population size in sample selection — You cannot select more elements than exist in your population (r cannot exceed n). If r > n, the result is undefined mathematically. Always verify that your r value is less than or equal to n before calculating.
  3. Treating similar items as distinct — The formula assumes all n objects are distinguishable. If you have identical items (like three red balls and two blue balls), the permutation formula doesn't apply directly—you'll need to adjust for indistinguishability.
  4. Factorials grow explosively — Factorial values increase extremely rapidly. At n = 20, you already have 20! = 2.43 × 10¹⁸. Be prepared for very large results and use scientific notation when necessary.

Worked Example: Arranging a Subset

Suppose you're organizing a conference panel with 8 available experts but only 3 speaking slots arranged in a specific order (opening speaker, middle speaker, closing speaker). The number of distinct arrangements is:

8P3 = 8! ÷ (8 − 3)! = 8! ÷ 5! = 8 × 7 × 6 = 336

This means there are 336 different ways to assign three speakers from your eight available experts to the three distinct roles. The first position offers 8 choices, the second position offers 7 remaining choices, and the third position offers 6 remaining choices, yielding 8 × 7 × 6 = 336 total arrangements.

Frequently Asked Questions

Why does the order matter in permutations?

Order distinguishes between different arrangements. In permutations without repetition, the arrangement AB (A selected first, B second) is fundamentally different from BA (B selected first, A second). This matters whenever you're assigning ranked positions, creating ordered sequences, or determining arrangements where position carries distinct meaning—such as race placings, seating arrangements, or password character sequences.

Can you calculate permutations when n is smaller than r?

No. By definition, you cannot select more objects than exist in your population. If r > n, the calculation is mathematically undefined. The constraint r ≤ n is non-negotiable. For instance, you cannot permute 7 objects from a set of only 5 distinct items without repetition.

What's the difference between nPr and nCr?

nPr (permutations) counts ordered arrangements where sequence matters, while nCr (combinations) counts unordered selections where sequence is irrelevant. For selecting 2 people from 4 candidates: nP2 = 12 possible ordered pairs, but nC2 = 6 unordered pairs. Permutations are always greater than or equal to their corresponding combinations because permutations count each selection multiple times based on arrangement possibilities.

How many distinct 4-digit sequences can you form from the digits 1–9 without repetition?

Using the formula nPr with n = 9 (available digits) and r = 4 (sequence length): 9P4 = 9! ÷ 5! = 9 × 8 × 7 × 6 = 3,024. You can create 3,024 different four-digit sequences where each digit appears at most once and all digits are drawn from 1 through 9.

What happens to the permutation count when r equals n?

When r = n, you're arranging all n objects. The formula becomes nPn = n! ÷ 0! = n! (since 0! = 1). For example, if you arrange all 5 letters in a 5-letter set, nP5 = 5! = 120. This represents the total number of ways to order an entire population.

Why is the permutation count so much larger when r approaches n?

As r increases toward n, fewer positions remain unfilled, but the number of valid selections at each step remains high. The formula multiplies n × (n-1) × (n-2)... more terms, causing explosive growth. Moving from selecting 2 items (8 × 7 = 56) to selecting 5 items (8 × 7 × 6 × 5 × 4 = 6,720) from 8 objects increases the result roughly 120-fold because you're multiplying by three additional terms.

More statistics calculators (see all)