Permutation Calculator

Calculate permutations P(n, r) — the number of ordered arrangements of r items from n.

P(n,r) — Without Repetition
720
10! / 7! = 3,628,800 / 5,040
C(n,r) — Combinations
120
Each combination has 3! = 6 orderings
nʳ — With Repetition
1,000
10^3 — items can repeat
Order Multiplier
P(n,r) / C(n,r) = r! = 6
n!
3,628,800
10 factorial
Permutations vs Combinations
C(n,r) = 120P(n,r) = 720
FormulaMeaningOrder Matters?
P(n,r) = n!/(n−r)!Permutation without repetitionYes
Permutation with repetitionYes
C(n,r) = n!/(r!(n−r)!)Combination without repetitionNo
(n−1)!Circular permutationYes (rotations same)
n!/(n₁!·n₂!·…)Multiset permutationYes (identical items)
Planning notes, formulas, and examples

About the Permutation Calculator

The Permutation Calculator computes P(n, r), the number of ordered arrangements of r items chosen from n distinct items. Unlike combinations, permutations care about the order of selection.

Permutations answer questions like "How many 3-letter codes can be made from 26 letters without repeats?" or "In how many ways can the top 3 finishers be arranged in a race of 10 runners?"

This calculator computes P(n, r) = n! / (n−r)! and compares it with the combination count so you can see how order multiplies the possibilities.

When This Page Helps

Permutation calculations involve large factorials. This calculator computes the result efficiently and compares with combinations to clarify the effect of ordering.

How to Use the Inputs

  1. Enter n (total items).
  2. Enter r (items to arrange).
  3. View P(n, r) = n! / (n−r)!.
  4. Compare with C(n, r) to see how order matters.
  5. r must be ≤ n.
Formula used
P(n, r) = n! / (n−r)! Equivalently: n × (n−1) × ... × (n−r+1) P(n, r) = C(n, r) × r!

Example Calculation

Result: 720

P(10,3) = 10 × 9 × 8 = 720. There are 720 ordered arrangements of 3 items from 10.

Tips & Best Practices

  • P(n, n) = n! (all items arranged in order).
  • P(n, 1) = n (simply choosing one item).
  • P(n, r) = C(n, r) × r! — each combination has r! orderings.
  • Lock combinations are actually permutations (order matters).
  • Phone PINs are permutations with repetition: 10^4 = 10,000.
  • Use permutations when the arrangement or sequence matters.

Permutations in the Real World

Race finishes, password possibilities, seating arrangements, and tournament brackets all involve permutations. Any situation where the order of selection matters requires permutation counting.

Permutations of Multisets

When some items are identical, the formula becomes n! / (n₁! × n₂! × ...). The word MISSISSIPPI has 11! / (4! × 4! × 2!) = 34,650 distinct arrangements.

Circular Permutations

For arrangements in a circle (like seating at a round table), the count is (n−1)! because rotations of the same arrangement are considered identical.

Mastering this concept provides a strong foundation for advanced coursework in mathematics, statistics, and related quantitative disciplines.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • A permutation is an ordered arrangement of items. ABC, ACB, BAC are three different permutations of the same three letters.