How many combinations can be using 3 alphabet letters (from A to Z)? Note that string doesn't have to be unique, it can be eg. RPP or AZZ
$\endgroup$ 31 Answer
$\begingroup$You can make three independent choices, one for each of the three letters. For each choice you have 26 options (the letters in the alphabet). So the total number of combinations is
$$ 26 \cdot 26 \cdot 26 = 26^3 = 17576. $$
If you want the letters to be unique, the calculation changes slightly. You still have 26 options for the first choice, but for the second choice there are now only 25 options available (all letters except the one you already chose), and for the third choice there are 24 options available (all letters except the two you already chose). So this gives you:
$$ 26 \cdot 25 \cdot 24 = 15600. $$
$\endgroup$ 1