🔢

Permutation and Combination Calculator

Calculate permutations (nPr) and combinations (nCr) with accurate results and detailed explanations.

Calculator Input

Calculation Results

Calculation Type: --
Formula: --
Result: --
n! / (n - r)!

About Permutations and Combinations

Permutations and combinations are fundamental concepts in combinatorics that deal with arranging and selecting items from a set.

Permutations (nPr):

Permutations refer to the number of ways to arrange items where order matters.

Type Formula Description
Permutation without repetition nPr = n! / (n - r)! Selecting r items from n without repetition where order matters
Permutation with repetition nPr = n^r Selecting r items from n with repetition allowed where order matters
Example: How many ways can you arrange 3 books from a set of 5?
n = 5, r = 3 → 5P3 = 5! / (5-3)! = 120 / 2 = 60 ways

Combinations (nCr):

Combinations refer to the number of ways to select items where order does not matter.

Type Formula Description
Combination without repetition nCr = n! / (r! × (n - r)!) Selecting r items from n without repetition where order doesn't matter
Combination with repetition nCr = (n + r - 1)! / (r! × (n - 1)!) Selecting r items from n with repetition allowed where order doesn't matter
Example: How many ways can you choose 3 books from a set of 5?
n = 5, r = 3 → 5C3 = 5! / (3! × (5-3)!) = 120 / (6 × 2) = 10 ways

Key Differences: