Assume that we have $52$ characters; $26+26$ lowercase and uppercase letters.
We want to create passwords of eight characters long.
There are two conditions
- The letter I (uppercase i) has to be included.
- Characters may appear only once.
So, for instance "aaaaaaIaa" is illegal, however "aIbcdefgh" is OK.
My solution:
Since no character may be duplicated and the string must contain at least one I , we have the following basic forms:
I********
*I*******
**I******
***I*****
****I****
*****I***
******I**
********I
Then the possible combination would be $ 8*Perm_{7}(51) = 8* \frac{51!}{(51-7)!} $
Is that correct ?