This is a simple permutations problem. A simple way to picture this is to set up places for each letter/number like this:
_ _ _ _ _ _ _
And then putting in the appropriate numbers. For the first place, the character must be a digit, and there are 10 digits from which we can choose (0-9), so 10 goes in the first place.
10 _ _ _ _ _ _
For the second place, since repetition is allowed, we also have 10 digits from which we can choose for it as well, and the same is true for the third place, so 10 is inputted into those places:
10 10 10 _ _ _ _
For the fourth place, we have 26 letters from which we can choose, so 26 is put in that place. Since repetition is allowed, we also have 26 letters for the fifth, sixth, and seventh places as well, so:
10 10 10 26 26 26 26
And then we multiply those numbers together to get 456,976,000, and that is the number of possible permutations of license plates with the above set of criteria.
For the second part, we do the same thing:
_ _ _ _ _ _ _
If we start with the numbers, we only have 9 to choose from for the first place, since the number 5 is set to be used for the last numbers place and repetition is not allowed, so:
9 _ _ _ _ _ _
For the second place, we only have 8 from which we can choose, since repetition is not allowed. For the third, we only have one from which we can choose, since the last digit MUST be a digit that has already been chosen, so:
9 8 1 _ _ _ _
For the letters, we have 25 from which we can choose, since the last letter has already been chosen, and repetition is not allowed:
9 8 1 25 _ _ _
For the fifth place, we have 24 from which we can choose, and for the sixth, we have 23. For the seventh, we have only one, since it has already been chosen, so:
9 8 1 25 24 23 1
Now we multiply those numbers together, and we get 993600 possible permutations.
Tom F.
11/16/14