It is important to have a strategy in order to understand and solve problems.
It is necessary to understand the greatest common divisor, least common multiple, permutation, combination, and power set.
Selecting and listing only a subset of n is called a permutation.
Permutations must be listed in order.
formula: nPr = n! / (n-r)!
Caution: 0! and 1! is 1
In combinations, groups are more important than order.
The order of [A,B,C] and [A,C,B] is different, but the combination treats it as one case.
formula: nCr = n! / (r! * (n - r)!)
ex) LCM(60, 75, 90) is 900
ex) GCD(12, 24) is 12
ex) {1,2,3} power set
{}, {1}, {2}, {3}, {1,2}, {1,3}, ... {2,3}, {1,2,3}
All subsets of the set are called power sets.