|
Sub Topics
|
Like the other number systems, the hexadecimal number system is also vividly used in the field of mathematics, computer science and computer application. The hexadecimal Numbers is also the positional number system having base or radix value 16, the numbers in hexadecimal number system is also known as hex numbers. The hex numbers have base 16 so it follows 16 symbols. The symbols used in hexadecimal numbers are 0 - 9 digits and the alphabets A, B, C, D, E, F. |
Example 1:
Convert the hexadecimal number 3AB2 to binary.
3AB216
= (3 * 163) + (10 * 162) + (11 * 161) + (2 * 160)
= (3 * 4096) + (10 * 256) + (11 * 16) + (2 * 1)
= 12288 + 2560 + 176 + 2
= 1502610
Example 2:
Convert the hexadecimal number 2F3A to binary.
216 = 00102
F16 = 11112
316 = 00112
A16 = 10102
2F3A16 = 00101111001110102
