Convert Hexadecimal to Binary Bits

Click For Summary
SUMMARY

This discussion focuses on the conversion of hexadecimal numbers to binary bits, emphasizing that each hex digit corresponds to four binary bits. The conversion process involves translating each hex digit into its binary equivalent using a lookup table or by applying the method of dividing by 2 and tracking remainders. For example, the hexadecimal number 34A31FB is converted to binary as 11010010100011000111111011. The discussion also touches on the relationship between binary numbers and polynomial forms, clarifying that binary can be expressed as sums of powers of 2.

PREREQUISITES
  • Understanding of hexadecimal and binary number systems
  • Familiarity with basic arithmetic operations (division, remainders)
  • Knowledge of powers of 2 and their significance in binary representation
  • Ability to interpret and use lookup tables for conversions
NEXT STEPS
  • Learn how to create and use a hexadecimal to binary lookup table
  • Explore binary to decimal conversion techniques
  • Study the process of converting binary numbers to polynomial form
  • Investigate the applications of binary and hexadecimal in computer science
USEFUL FOR

Students, programmers, and anyone interested in computer science who needs to understand number system conversions, particularly in programming and data representation contexts.

Rubik
Messages
95
Reaction score
0
How do you convert hexadecimal numbers into bianry bits?
 
Mathematics news on Phys.org
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.
 
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?
 
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
1_{16}= 1_2, 2_{16}= 10_2[/tex], 3_{16}= 11_2, 4_{16}= 100_2, 5_{16}= 101_2, 6_{16}= 110_2, 7_{16}= 111_2, 8_{16}= 1000_2, 9_{16}= 1001_2, A_{16}= 1010_2, B_{16}= 1011_2, C_{16}= 1100_2, D_{16}= 1101_2, E_{16}= 1110_2, F_{16}= 1111_2<br /> <br /> converting hexadecimal to binary is much simpler because 16= 2^4.<br /> <br /> For example, to change 34A31FB_{16} to binary, write each digit in binary and combine them: (0011)(0100)(1010)(0011)(0001)(1111)(1011)_2= 11010010100011000111111011_2.
 
Last edited by a moderator:
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
 
Thank you! Now I am pretty confident with converting hexadecimal to binary and was wondering how do you now convert binary to polynomial form?
 
Numbers are not polynomials. You will have to explain what you mean by converting a number to a polynomial.
 
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.
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
Replies
17
Views
660
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 5 ·
Replies
5
Views
18K
Replies
6
Views
2K
  • · Replies 1 ·
Replies
1
Views
5K
  • · Replies 22 ·
Replies
22
Views
5K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
4
Views
2K