Combination & Permutation Calculator (nCr & nPr Formulas)
Calculate combinations (order does not matter) and permutations (order matters) using factorials.
TL;DR: Combination & Permutation Calculator computes $nCr = n! / [r!(n-r)!]$ and $nPr = n! / (n-r)!$ to determine total arrangement and selection counts.
What Is the Difference Between Combinations (nCr) and Permutations (nPr)?
The core difference is whether order matters. In permutations (nPr), order matters (e.g., race podium positions, passwords): nPr = n! / (n - r)!. In combinations (nCr), order does not matter (e.g., lottery numbers, committee members): nCr = n! / [r!(n - r)!].
How to Use the Combination & Permutation Calculator
Our Combination & Permutation Calculator performs high-precision mathematical operations directly in your browser with zero latency and complete client-side privacy.
- Enter total number of items in the set ($n$).
- Enter number of items to select ($r$), where $0 \le r \le n$.
- Select whether Order Matters (Permutation) or Order Does Not Matter (Combination).
- Optionally toggle 'Repetition Allowed'.
- View calculated permutations, combinations, and step-by-step factorial expansions.
Mathematical Formula & Equations
Calculates the number of possible unordered subsets (combinations) and ordered arrangements (permutations) of $r$ items chosen from $n$ items.
Calculation Example
Choosing 3 committee members from 10 people: $$10C3 = \frac{10!}{3!7!} = \frac{10 \times 9 \times 8}{6} = 120 \text{ combinations}$$
100% Client-Side Privacy & Data Security
All calculations, amortization schedules, variables, and sensitive numerical datasets execute 100% locally in your web browser memory. Your financial, medical, and personal values are never transmitted, logged, or uploaded to any external server.
Frequently Asked Questions
- Combinations: `nCr = n! / [r!(n - r)!]`. Permutations: `nPr = n! / (n - r)!`, where `!` represents the factorial operation.
- A factorial is the product of all positive integers less than or equal to n: `n! = n × (n - 1) × ... × 2 × 1`. By definition, `0! = 1`.
- Since card order in hand does not matter: `52C5 = 52! / (5! × 47!) = 2,598,960` possible combinations.
- With repetition allowed: `10^4 = 10,000` PINs. Without repetition: `10P4 = 10! / 6! = 5,040` permutations.
- Because combinations divide permutations by `r!` (the number of ways to reorder the chosen items), reducing the count unless `r = 0` or `r = 1`.
- Permutations care about order (e.g., lock combinations, race standings), whereas Combinations ignore order (e.g., lottery numbers, hand of poker cards).
Cite This Calculator
Need to reference this online calculator in a financial proposal, academic paper, blog post, or classroom curriculum? Copy a citation below.
Embed This Tool
Add the live Combination & Permutation Calculator to your own website with this snippet — it loads the real, working calculator in an iframe.
<iframe src="https://nexlove.org/embed/combination-permutation-calculator.html" width="100%" height="600" style="border:1px solid #e2e8f0;border-radius:12px" title="Combination & Permutation Calculator — NexLove.org" loading="lazy"></iframe>