Overview
- Counting as an idea
- Combinatorics and the Factorial
- Combination vs Permutation
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Feature | nPr (Permutation) | nCr (Combination) |
|---|---|---|
| Meaning | Arrangements of items where order matters | Selection of items where order does not matter |
| Formula | P(n,r)=(n−r)!n! | C(n,r)=r!(n−r)!n! |
| Common Use | Creating passwords, seating charts, or race rankings (1st, 2nd, 3rd) | Choosing a committee, drafting a team, or selecting lottery numbers |
| Relation | P(n,r)=C(n,r)×r! | C(n,r)=r!P(n,r) |
