Q:

A keycode must contain 2 letters and 3 numbers. The letters may be any letter of the alphabet. The numbers should be any number from 0 to 9. How many different keycode combinations are there?

Accepted Solution

A:
The English alphabet contains 26 letters (a, b, c, ...y, z). 

The digits from 0 to 9 are a total of 10.


A keycode contains 2 letters, and 3 numbers, for example:

AB 598;  MM 139;    NT 498; ...


So there are 26 possible choices for the first letter, which can combined with any of the 26 possible choices for the second letter, so there are a total of 

26*26=676 possible pairs of letters.


Similarly, the 10 possible choices for the first number, which can be combined with the 10 possible choices for the second number, and the 10 possible choices for the third number make a total of :

10*10*10=1,000 possible triples of numbers.


Any of the 676 possible pairs of letters can be combined with any of the possible 1,000 triples of numbers. This makes a total of 

676*1,000=676,000 keycodes.


Answer: 676,000