This is a homework question that I am stuck with.

Consider unsigned integer representation. How many bits will be required to store a decimal number containing:

i) 3 digits ii) 4 digits iii) 6 digits iv) n digits

I know that the range of unsinged integer will be 0 to 2^n but I don't get that how does the number of bits required to represent a number depends upon it? Please help me out .

Thanks in advance.

link|improve this question

feedback

3 Answers

Well, you just have to calculate the range for each case and find the lowest power of 2 that is higher than that range.

For instance, in i), 3 decimal digits -> 10^3 = 1000 possible numbers so you have to find the lowest power of 2 that is higher than 1000, which in this case is 2^10 = 1024 (10 bits).

Edit: Basically you need to find the number of possible numbers with the number of digits you have and then find which number of digits (in the other base, in this case base 2, binary) has at least the same possible numbers as the one in decimal.

To calculate the number of possibilities given the number of digits: possibilities=base^ndigits

So, if you have 3 digits in decimal (base 10) you have 10^3=1000 possibilities. Then you have to find a number of digits in binary (bits, base 2) so that the number of possibilities is at least 1000, which in this case is 2^10=1024 (9 digits isn't enough because 2^9=512 which is less than 1000).

If you generalize this, you have: 2^nbits=possibilities <=> nbits=log2(possibilities)

Which applied to i) gives: log2(1000)=9.97 and since the number of bits has to be an integer, you have to round it up to 10.

link|improve this answer
Sorry but can you please elaborate it. Why did you do so? – Startup Crazy Aug 22 '11 at 16:16
Edited the answer with further explanation, hope it helps. – guardianpt Aug 22 '11 at 17:29
So, I need 997 bits to store a 3 digit number? Isn't that too large number of bits? – Startup Crazy Aug 22 '11 at 19:34
9.97 bits, not 997. But you really need 10 because there isn't such thing as .97 bits. – guardianpt Aug 22 '11 at 20:58
So is that a ',' in 9,97 or a '.'? Shouldn't it be a '.' there? – Startup Crazy Aug 23 '11 at 8:56
show 1 more comment
feedback

The simplest answer would be to convert the required values to binary, and see how many bits are required for that value. However, the question asks how many bits for a decimal number of X digits. In this case, it seems like you have to choose the highest value with X digits, and then convert that number to binary.

As a basic example, Let's assume we wanted to store a 1 digit base ten number, and wanted to know how many bits that would require. The largest 1 digit base ten number is 9, so we need to convert it to binary. This yields 1001, which has a total of 4 bits. This same example can be applied to a two digit number (with the max value being 99, which converts to 1100011). To solve for n digits, you probably need to solve the others and search for a pattern.

To convert values to binary, you repeatedly divide by two until you get a quotient of 0 (and all of your remainders will be 0 or 1). You then reverse the orders of your remainders to get the number in binary.

Exampe: 13 to binary.

  • 13/2 = 6 r 1
  • 6/2 = 3 r 0
  • 3/2 = 1 r 1
  • 1/2 = 0 r 1
  • = 1101 ((8*1) + (4*1) + (2*0) + (1*1))

Hope this helps out.

link|improve this answer
It works for the first two but when you come to the next two questions, they are large enough to be solved by your way. – Startup Crazy Aug 22 '11 at 19:22
feedback

Keep dividing the number by 2 until you get a quotient of 0.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.