How many possible words of length 6 can I generate from the English lower case alphabet, if each word starts with a random consonant, and after that vowels and consonants alternate?
What if I add digits to my alphabet?
See also this question.
How many possible words of length 6 can I generate from the English lower case alphabet, if each word starts with a random consonant, and after that vowels and consonants alternate?
What if I add digits to my alphabet?
See also this question.
I assume this is related to this question/answer, if so then the numbers of possibilities is this case (6 chars) are 1 million, 157 thousand and 625:
21 * 5 * 21 * 5 * 21 * 5 = 1,157,625
7 chars:
21 * 5 * 21 * 5 * 21 * 5 * 21 = 24,310,125
8 chars:
21 * 5 * 21 * 5 * 21 * 5 * 21 * 5 = 121,550,625
You get the idea.
You mean permutation/combination of a specific string? ... For example, do you want to compute permutation of 'ciphia'? ...the question is a bit hazy.