Convert Hexadecimal to Binary Bits

In summary, to convert hexadecimal numbers into binary bits, you can use a simple lookup table or a standard method of converting decimal numbers to binary. To convert binary to polynomial form, you can represent each binary or decimal place as a power of 2 or 10, respectively.
  • #1
Rubik
97
0
How do you convert hexadecimal numbers into bianry bits?
 
Mathematics news on Phys.org
  • #2
First of all, it's handy to know that each hex digit is four bits. The reason for this is that with one hex digit one can represent sixteen different numbers, whereas it takes four bits to do so.

So, take the hexadecimal number, and just convert each hex digit in it into a four-bit binary number. The result will be the correct binary number.
 
  • #3
I was thinking about it some more, and I think that a really neat way to compute the binary form of each hex digit is as follows:

e.g. 13 (decimal) = d (hex)

A binary number is just a sum of powers of 2. You divide the number by 2. If the remainder is 1, you know that there is a 1 in the 20 place (the "ones" or "units" place). If the remainder is 0 (i.e. the number is even) there cannot be anything in the 20 place.

13/2 = 6 r 1

Binary result so far: _ _ _ 1

Now you apply this procedure (subtract 1 if odd and then divide by 2) recursively to the result. In binary, dividing by 2 is like getting rid of the least significant bit, and shifting all the other bits to the right by one place. So, when considering whether 6 is even or odd, now you're considering whether the bit in the 21 place is 1 or 0:

6/2 = 3 r 0

Binary result so far: _ _ 0 1

3/2 = 1 r 1

Binary result so far: _ 1 0 1

1/2 = 0 r 1

Binary result: 1 1 0 1

Check:

1101 = 23 + 22 + 20 = 8 + 4 + 1 = 13 (decimal), which is correct.

Thoughts?
 
  • #4
That's a standard method of converting decimal numbers to binary, and could be used to convert individual hex "digits" to binary.

But once you have learned that
[itex]1_{16}= 1_2[/itex], [itex]2_{16}= 10_2[/tex], [itex]3_{16}= 11_2[/itex], [itex]4_{16}= 100_2[/itex], [itex]5_{16}= 101_2[/itex], [itex]6_{16}= 110_2[/itex], [itex]7_{16}= 111_2[/itex], [itex]8_{16}= 1000_2[/itex], [itex]9_{16}= 1001_2[/itex], [itex]A_{16}= 1010_2[/itex], [itex]B_{16}= 1011_2[itex], [itex]C_{16}= 1100_2[/itex], [itex]D_{16}= 1101_2[/itex], [itex]E_{16}= 1110_2[/itex], [itex]F_{16}= 1111_2[/itex]

converting hexadecimal to binary is much simpler because [itex]16= 2^4[/itex].

For example, to change [itex]34A31FB_{16}[/itex] to binary, write each digit in binary and combine them: [itex](0011)(0100)(1010)(0011)(0001)(1111)(1011)_2[/itex][itex]= 11010010100011000111111011_2[/itex].
 
Last edited by a moderator:
  • #5
Rubik said:
How do you convert hexadecimal numbers into bianry bits?

You can use a simple lookup table to convert a hex character to its binary equivalent:

0:0000 1:0001 2:0010 3:0011
4:0100 5:0101 6:0110 7:0111
8:1000 9:1001 A:1010 B:1011
C:1100 D:1101 E:1110 F:1111
 
  • #6
Thank you! Now I am pretty confident with converting hexadecimal to binary and was wondering how do you now convert binary to polynomial form?
 
  • #7
Numbers are not polynomials. You will have to explain what you mean by converting a number to a polynomial.
 
  • #8
Rubik said:
Thank you! Now I am pretty confident with converting hexadecimal to binary and was wondering how do you now convert binary to polynomial form?
Do you mean convert a binary number to a sum of powers of 2?

If that's what you mean, binary numbers work the same way as decimal numbers, where each binary or decimal place represents some power of 2 or 10.

For example, 41310 = 4 x 102 + 1 x 101 + 3 x 100.

1011102 = 1 x 25 + 0 x 24 +1 x 23 + 1 x 22 + 1 x 21 + 0 x 20.
 

Related to Convert Hexadecimal to Binary Bits

1. What is hexadecimal and why do we need to convert it to binary?

Hexadecimal is a base-16 numbering system that uses 16 symbols (0-9 and A-F) to represent numbers. Computers primarily use binary (base-2) to store and process data, so it is important to convert hexadecimal to binary in order to perform calculations and manipulate data.

2. How do I convert a hexadecimal number to binary?

To convert a hexadecimal number to binary, you can use the following steps:

  1. Write down the hexadecimal number.
  2. Convert each individual hexadecimal digit to its binary equivalent (use a conversion table or an online converter).
  3. Combine all the binary digits together to form the binary representation of the original hexadecimal number.

3. Is there a formula or algorithm for converting hexadecimal to binary?

Yes, there is a formula that can be used to convert hexadecimal to binary. It is called the "double dabble" algorithm and involves repeatedly doubling the binary number and adding the next hexadecimal digit until all digits have been converted.

4. Can I convert a hexadecimal number with decimal points to binary?

Yes, you can convert a hexadecimal number with decimal points (or fractions) to binary. The process is similar to converting a whole hexadecimal number, but you will also need to convert the decimal part to binary using a different method.

5. Are there any shortcuts or tricks to quickly convert hexadecimal to binary?

Yes, there are a few shortcuts and tricks that can help you quickly convert hexadecimal to binary. For example, you can group the hexadecimal digits into sets of 4 and convert each set to its corresponding 4-bit binary representation. Additionally, you can also use a calculator or an online converter tool to speed up the conversion process.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
1
Views
2K
  • Programming and Computer Science
Replies
3
Views
980
Replies
1
Views
1K
Replies
4
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
22
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
2K
  • General Math
Replies
5
Views
18K
  • Computing and Technology
Replies
4
Views
895
  • Calculus and Beyond Homework Help
Replies
5
Views
3K
Back
Top