How many license tags?

Because of rapid growth, a city wants to introduce a new system for license tags. There are 10,000 cars that need a new license tag. At first, they want to collect every possible system that gives enough possibilities for 10,000 cars. But there are some conditions for a system:

  • (1) Every system S ( a , b ) S(a,b) consists of a a letters and b b digits.
  • (2) The order doesn't matter, so it's always letters, then digits.
  • (3) The system should not have too many symbols. If the system with a 1 a-1 letters and b b digits or with a a letters and b 1 b-1 digits also works (gives enough possibilities), then they will choose that.

    For example, S ( 1 , 3 ) S(1,3) is allowed, because there are 2 6 1 1 0 3 = 26 , 000 ( 10 , 000 ) 26^1 \cdot 10^3 = 26,000\, (\geq 10,000) possibilities. Neither S ( 0 , 3 ) S(0,3) nor S ( 1 , 2 ) S(1,2) works, as can be verified similarly. S ( 4 , 0 ) S (4,0) isn't allowed, because S ( 3 , 0 ) S(3,0) already has enough possibilities ( 2 6 3 = 17 , 576 ) . \big(26^3= 17,576\big).

    Now, they want to reserve a few license tags for a company. These tags should satisfy the following conditions:

  • (4) If there are letters, they are all the same.

  • (5) Every tag has at least one digit.
  • (6) Every tag should have a perfect square as its number.

How many license tags can they reserve from all allowed systems?

Details and Assumptions:

  • They use the Latin alphabet and Arabic numerals.
  • Leading zeroes and also just 0 are allowed.


The answer is 1192.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Henry U
Oct 14, 2018

First, let‘s make a list of all possible systems.

If there are a a letters and b b digits, the system will give 2 6 a 1 0 b 26^a \cdot 10^b possibilities.

So, for a = 0 a=0 letters, b b must satisfy 2 6 0 1 0 b 10 , 000 26^0 \cdot 10^b \geq 10,000 . Because of rule 3, we have to pick the smallest b b , which is b = 4 b=4 . This means that the system S ( 0 , 4 ) S(0,4) is allowed. We do the same thing for b = 1 , 2 , b=1,2,… to get the valid systems S ( 1 , 3 ) S(1,3) , S ( 2 , 2 ) S(2,2) and S ( 3 , 0 ) S(3,0) .

Here we can stop because a 4 a \geq 4 would break rule 3. By rule 5, S ( 3 , 0 ) S(3,0) is also invalid because it doesn‘t use any digits.

Therefore, we are left with S ( 0 , 4 ) S(0,4) , S ( 1 , 3 ) S(1,3) and S ( 2 , 2 ) S(2,2) .

  • S ( 0 , 4 ) S(0,4) : There are no letters so rule 4 doesn‘t restrict anything. 1 0 4 10^4 is a perfect square, but it uses 5 digits, so there are 1 0 4 1 = 100 \sqrt{10^4} - 1= 100 squares remaining. But we shouldn‘t forget about 0, so actually there are 100 perfect squares which means 100 possibilities.
  • S ( 1 , 3 ) S(1,3) : There are 26 possibilities for the single letter. Similar to 1 0 4 10^4 , for 1 0 3 10^3 we also can take the squareroot and round up to get 1 0 3 = 32 \bigl\lceil \sqrt{10^3} \bigl\rceil = 32 perfect squares. In total, this system has 26 32 = 832 26 \cdot 32 = 832 tags to reserve.
  • S ( 2 , 2 ) S(2,2) : As before, we have 26 possible letters (by rule 4 both letters are the same) and 1 0 2 = 10 \bigl\lceil \sqrt{10^2} \bigl\rceil = 10 perfect squares, so there are 26 10 = 260 26 \cdot 10 = 260 license tags.

So in total, from all valid systems they can reserve 100 + 832 + 260 = 1192 100 + 832 + 260 = \boxed{1192} .

(Note: x \lceil x \rceil means rounding up to the next integer)

I treated "rule 5 slightly differently: I treated it as prohibiting company reserved tags. That does not change the answer. If the same rules are used, then five systems pass: {0,6,1000000,1000},{1,5,2600000,8242},{2,4,6760000,2600},{3,2,1757600,260},{4,1,4569760,104} and the number of company reserved tags is 12206.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...