May 22, 2025
n!
) to determine the number of ways to arrange n
items.nPr
for permutations of r
items from n
available.3! = 6
).B
is repeated).AB
is the same as BA
, only the identity of the selected items matters.nCr
to calculate combinations of r
items from n
available.nCr
.