Find permutations of variable length

95 Views Asked by At

I want to generate a random string consists of lower- upper-case letters and digits. In addition, the length of this string is variable ranging from 4 to 6. For example, the first word is 3rT6, the second is DGJeH, third is LLG5us.

What is the permutations formula to calculate it.

Is it correct to calculate it using the following:

w!(n-w)!/n!

W is the number of characters and n is the number of the character set,

thanks

1

There are 1 best solutions below

0
On

If you are asking for the formula that counts the number of strings with $w=4$, $w=5$, and $w=6$ symbols from your lower-upper-digit set, it is just $$n^w,$$ since there are no additional restrictions. If you would like your word to have no repeated symbols, or no vowels together (for example), then the answer will be different.