Hexadecimal Notation - Research Article from World of Computer Science

This encyclopedia article consists of approximately 2 pages of information about Hexadecimal Notation.
Encyclopedia Article

Hexadecimal Notation - Research Article from World of Computer Science

This encyclopedia article consists of approximately 2 pages of information about Hexadecimal Notation.
This section contains 309 words
(approx. 2 pages at 300 words per page)

Hexadecimal notation is a system for representing numbers using the 16 alphanumeric characters 0-9, A, B, C, D, E, and F. (Hexa- and deci- are Greek combination forms meaning "six" and "ten," hence the hexadecimal or six-ten [6 + 10 = 16] system.) The hexadecimal number system uses positional notation and powers of 16 to express numbers in a manner similar to that of the familiar decimal system. In the decimal system, the positions of the numerals 0-9 determine their values. Consider the decimal number 283.75; each digit is multiplied by a particular power of 10, as follows: 283.75 = (2 x 102) + (8 x 101) + (3 x 100) + (7 x 10-1) + (5 x 10-2). Numbers expressed in hexadecimal notation use the same basic system, with two important differences: first, in addition to the numerals 0 -9, the alphabetic symbols A-F are used as numerals. The decimal equivalents of these numerals are A = 10, B = 11, C = 12, D = 13, E = 14, and F = 15. Second, powers of 16 are used in the hexadecimal system, instead of powers of 10. For the hexadecimal number C84, we have C84 = (12 x 162) + (8 x 161) + (4 x 160) = 3072 + 12 + 4 = 3,204.

In computer work, hexadecimal notation is used as a convenient method for representing binary numbers longer than a few bits. Binary numbers are difficult for human beings to deal with directly because of their bulk, but each hexadecimal digit stands for four binary digits. For example, the binary number 101100010111110100 can be converted to hexadecimal notation by dividing the number into groups of four binary digits (starting at the right-hand end) and replacing each group by a corresponding hexadecimal digit. Where the left-hand group is incomplete, zeros are filled in as required. The result is 0010/1100/0101/1111/0100 = 2C5F4. The greater compactness and readability of hexadecimal notation is here apparent. However, except for expert readers of hexadecimal notation, "2C5F4" is not liable to convey much. Conversion to decimal notation proceeds as follows: 2C5F4 = (2 x 164) + (12 x 163) + (5 x 162) + (15 x 161) + (4 x 160) = (2 x 65,536) + (12 x 4,096) + (5 x 256) + (15 x 16) + (4 x 1) = 181,748.

This section contains 309 words
(approx. 2 pages at 300 words per page)
Copyrights
Gale
Hexadecimal Notation from Gale. ©2005-2006 Thomson Gale, a part of the Thomson Corporation. All rights reserved.