Example: permutations of ABCD, taken 3 at a time (24 variants): ABC, ACB, BAC, BCA, ...
Example: combination of ABCD, taken 3 at a time (4 variants): ABC, ABD, ACD, and BCD.
Selection of objects from given set, considering all possible sizes of subsets. It includes subsets of different lengths, ranging from an empty subset to the full set itself.
subset of ABCD: 'A', 'B', 'C', 'D,' 'AB' , 'AC', 'AD', 'BC', 'BD', 'CD', 'ABC', ...