0
$\begingroup$

How many vehicle license plates can be made if the licenses contains 2 letters of the English alphabet followed by a three digit number.

  1. If repetitions are allowed.
  2. If repetitions are not allowed.
  • 0
    Prem, it is important to know why you answer is correct. Please ask questions. I have given a simple explanation, Dennis has used the proper notation that you should learn use once you have grasped the concept.2011-04-22
  • 0
    i have a suspicion about the 1st question whether it will be 26*26*999 Or 26*26*1000.........I am not getting why the text book is used 9992011-04-22

2 Answers 2

3

#1

The licence plate is described in-order so you can count the possibilities in order. Here is your plate:

__ __ __ __ __

What can go in the first spot? (ABCDEFGHIJKLMNOPQRSTUVWXYZ) So, there are 26 possibilities. What about the next spot? Again (ABCDEFGHIJKLMNOPQRSTUVWXYZ) .. so 26 again:

26 * 26 * __ __ __ = ?

now use the same idea for the spaces with numbers.


#2

Next, how do we count plates when you cannot repeat? If we have picked one of the 26 letters of the alphabet for the first element... then how many choices do we have for the next?

26 * 25 * __ __ __ = ?

Now, for the numbers. We have 10 possibilities as in the previous problem. (0123456789) But after we have used one number for the next slot there will only be 9 possibilities.

26 * 25 * 10 * 9 __ = ?

In fact, what we are doing is using a formula known as the "choose formula" or the binomial coefficient.

  • 0
    Ya ya for the 1st question answer should be 26*26*10*10*10 but given answer in text book is 26*26*9992011-04-22
  • 0
    you are right at second question2011-04-22
  • 0
    That sounds like an error. Like they forgot that 0 is a number...2011-04-22
  • 0
    i think they are considring 000 not a number2011-04-22
  • 0
    at the same time they are concidring 001,003,004,089 are three digit number..thet is right..but they dont think 000 is anumber..i dont know why?2011-04-22
  • 2
    Although to be fair, O and Q can be hard to distinguish from 0, and I is hard to distinguish from 1, so our expected number of ways to letter a license plate would be lower. A good exercise for the poster is to find how many ways to letter a license plate with these restrictions in place.2011-04-22
0

1) If repetitions are allowed, then you have $26^2$ options to pick 2 letters, and $10^3$ to pick three digits. Total of $26^2\cdot 10^3$

2) If repititions are not allowed, then $\binom{26}{2}$ options to pick 2 letters, and $\binom{10}{3}$ to pick three digits. Total of $2\cdot\binom{26}{2}\times3!\cdot \binom{10}{3}$

  • 0
    1)if repetition then 26^2 *999 will be the answer...that is what i am geeting from textbook....do you think this answer is right?2011-04-22
  • 0
    2)If No repetition then 26P2*10P3=4680002011-04-22