Permutation without Repetition Calculator

Enter the total number of objects (n) and the sample size (r) to calculate the number of permutations without repetition. This tool applies the formula P(n,r) = n! / (n−r)! and returns the exact count of ordered arrangements where each element can only be chosen once.

The total size of the set you are choosing from.

How many elements you want to select and arrange.

Results

P(n, r) — Number of Permutations

--

n! (Factorial of n)

--

(n−r)! (Factorial of n−r)

--

n − r

--

Frequently Asked Questions

What is permutation without repetition?

A permutation without repetition is an ordered arrangement of elements from a set where each element can be used only once. The order matters — selecting A then B is considered a different permutation from selecting B then A. This differs from combinations, where order is irrelevant.

What is the formula for permutations without repetition?

The formula is P(n, r) = n! / (n − r)!, where n is the total number of objects in the set and r is the number of objects you are selecting. The exclamation mark denotes a factorial — for example, 5! = 5 × 4 × 3 × 2 × 1 = 120.

How many permutations of 5 numbers can you make?

If you are arranging all 5 numbers (r = 5), then P(5, 5) = 5! / (5−5)! = 120 / 1 = 120. If you are only choosing 3 from those 5, P(5, 3) = 5! / 2! = 120 / 2 = 60 permutations.

How do I calculate the number of permutations (nPr) for a set of 11 elements?

Use the formula P(11, r) = 11! / (11 − r)!. For example, choosing 4 from 11 gives P(11, 4) = 11! / 7! = 7920. Simply enter n = 11 and r = 4 into this calculator to get the result instantly.

What is the difference between permutations with and without repetition?

With repetition, you can reuse the same element multiple times, giving nʳ arrangements. Without repetition, each element may appear at most once in an arrangement, giving n! / (n−r)! arrangements. Without repetition always yields fewer or equal results compared to with repetition.

Can r be greater than n in a permutation without repetition?

No. If r is greater than n, there are not enough distinct elements to fill all positions without reusing any, so the result is undefined (or zero valid permutations). Make sure r ≤ n when using this calculator.

What is the difference between a permutation and a combination?

In a permutation, the order of selection matters — choosing {A, B} is different from {B, A}. In a combination, order does not matter — {A, B} and {B, A} count as the same selection. Permutations always give a larger or equal count compared to combinations for the same n and r.

Why does the calculator have a maximum input of 170?

Factorials grow extremely fast. 170! is approximately 7.26 × 10³⁰⁶, which is near the upper limit of standard floating-point number representation in most programming environments. Values of n beyond 170 would produce results too large to represent accurately.

More Statistics Tools