# memo
Factorial
There are n! ways of arranging n distinct objects into an ordered sequence, permutations where n = r.
n개의 서로 다른 개체를 순서대로 배열하는 n! 가지 방법이 있습니다. 순열은 n=r입니다.
Combination
The number of ways to choose a sample of r elements from a set of n distinct objects where order does not matter and replacements are not allowed.
순서가 중요하지 않고 교체가 허용되지 않는 n개의 개별 개체 집합에서 r개 요소의 샘플을 선택하는 방법의 수입니다.
Permutation
The number of ways to choose a sample of r elements from a set of n distinct objects where order does matter and replacements are not allowed. When n = r this reduces to n!, a simple factorial of n.
순서가 중요하고 교체가 허용되지 않는 n개의 개별 개체 집합에서 r개 요소의 샘플을 선택하는 방법의 수입니다. n=r 이것이 n!로 줄어들 때, n의 단순 factorial 입니다.
Combination Replacement
The number of ways to choose a sample of r elements from a set of n distinct objects where order does not matter and replacements are allowed.
순서가 중요하지 않고 대체가 허용되는 n개의 개별 개체 집합에서 r개 요소의 샘플을 선택하는 방법의 수입니다.
Permutation Replacement
The number of ways to choose a sample of r elements from a set of n distinct objects where order does matter and replacements are allowed.
순서가 중요하고 대체가 허용되는 n개의 개별 집합에서 r개 요소의 샘플을 선택하는 방법의 수입니다.
n
the set or population
세트나 집단
r
subset of n or sample set
n의 부분집합 또는 표본 집합
# 순열 (Permutations)
nPr
P(n,r) = n!/(n-r)!
in google spreadsheet :
nPr =PERMUT(n,r)
nCr =COMBIN(n,r)
# 조합 (Combinations)
nCr
C(n,r) = n!/(r!*(n-r)!)
in google spreadsheet :
nCr =COMBIN(n,r)