Permutations (nPr)
nPr = n! / (n - r)!
Combinations (nCr)
nCr = n! / (r!(n - r)!)
Dup. Permutations (n^r)
nr
Dup. Combinations H(n,r)
H(n,r) = C(n+r-1, r)
사용 방법
Enter n and r to calculate permutations and combinations.
- Permutation nPr
- Combination nCr
- Supports large values
사용 사례
- 순열 및 조합 계산
- 가능한 결과 추정