[Maths Class Notes] on Hexadecimal Number System Pdf for Exam

A System of writing or denoting a Number is called a Number System. Number System is a Mathematical notation for portraying the Numbers using several symbols and digits. In Mathematics, there are two types of Number Systems. They are positional Number Systems and non-positional Number Systems. A non positional System is a Number System in which the value of a digit does not vary with its position. However, in the positional Number System, the value of a digit depends on its position in the Number. Hexadecimal Number System is a positional Number System. 

Hexadecimal Number System:

The value of any digit in positional Number System depends on the following:

  • The digit whose value is to be determined

  • Position of the digit in the Number

  • Base or radix of the Number System

The Hexadecimal Number System has the base as 16 (hexa = 6 and deci = 10). So it is also called the base 16 Number System. In this Number System, there are 16 digits which are used in representing Numbers in Hexadecimal form. It is similar to the Decimal Number System because the first 10 digits remain the same in both the Number Systems. However, 10 in the Decimal Number System is represented as A in the Hexadecimal System, 11 as B, 12 as C, 13 as D, 14 as E, 15 as F and 16 as 10. So the 16 digits of the Hexadecimal Number System are 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F.

Place Value of Digits in Hexadecimal Number System:

A Hexadecimal Number has two parts namely the integer part and the fraction part. Integer part includes the Number to the left of the Decimal point and the fraction part indicates the digits to the right of the Decimal point. The digits of a Number in Hexadecimal form has a weightage in powers of 16. The power of 16 increases as the digit is towards the left of the Decimal point whereas the power decreases as the digit is towards the right of the Decimal point.

()

Example: (9AB.47)16 is a Hexadecimal Number

The Number is written in expanded form as 

9 x 162 x A x 161 + B x 160 + 4 x 16-1 + 7 x 16-2

Hexadecimal Conversion Table:

Hexadecimal Numbers can also be represented in Binary, Octal and Decimal form. The table below denotes the representation of a Hexadecimal digit in other forms.

Hexadecimal Digit

Decimal Equivalent

Binary Equivalent

0

0

0000

1

1

0001

2

2

0010

3

3

0011

4

4

0100

5

5

0101

6

6

0110

7

7

0111

8

8

1000

9

9

1001

A

10

1010

B

11

1011

C

12

1100

D

13

1101

E

14

1110

F

15

1111

Conversion of Numbers in other Positional Systems to Hexadecimal Form:

Decimal to Hexadecimal Number System:

The Decimal Number is divided by 16 and the Hexadecimal equivalent of the remainder is noted. The quotient obtained is again divided by 16 and the Hexadecimal equivalent of the remainder is noted. The division is further continued till the quotient is equal to 0. The Number in Hexadecimal form is the remainders written from bottom to top. 

Example:

Convert the base 10 Number 242 into Hexadecimal form. 

Solution:

2 ⟶ 2

15 ⟶ F

(242)10 = (F2)16

Binary to Hexadecimal Conversion:

To convert a Binary Number into Hexadecimal form, the digits are first separated into groups of 4 from the Decimal point towards the right and the left. The left out digits are appended with the required Number of zeroes to form a group of 4 Binary digits. Each group of 4 Binary digits is replaced with a single Hexadecimal equivalent as depicted in the conversion table.

Example:

Convert (1010001011.10101001111)2 into Hexadecimal Number

Solution:

The integer part is grouped as 0010 1000 1011. Its Hexadecimal equivalent is (28B)16

The fraction part is grouped as 1010 1001 1110. Its Hexadecimal equivalent is (A9E)16

So the Number in Hexadecimal form is (28B. A9E)16

Octal to Hexadecimal Conversion:

Any Octal Number is first converted to Decimal form. The Decimal Number obtained is converted into a Hexadecimal Number using the method explained above. 

Example:

Convert (121)8 into Hexadecimal form.

Solution:

(121)8 is converted into Decimal form by multiplying each digit by its positional value of 8.

(121)8 = 1x 82 + 2 x 81 + 1 x 80 = 64 + 16 + 1 = (81)10

81 is then converted to Hexadecimal form as follows:

1 ⟶ 1

5 ⟶ 5

So (121)8 = (51)16

Hexadecimal to Decimal Conversion:

Any Number in Hexadecimal form is converted into its Decimal equivalent by multiplying each digit with its positional values of 16. 

Example:

Convert (AB4)16 into Decimal Number.

Solution:

(AB4)16 = A x 162 + B x 161 + 4 x 160 = 10 x 64 + 11 x 16 + 4 x 1 = (820)10

Hexadecimal to Binary Conversion:

A Hexadecimal Number is converted into a Binary Number by writing the 4 digit Binary equivalent of each Hexadecimal digit in the Number by looking into the conversion table. 

Example:

Convert (C7D)16 into base 2 Number.

Solution:

Binary equivalent of 

C => 1100

7 => 0111

D => 1101

So (C7D)16 = (110001111101)2 

Hexadecimal to Octal Conversion:

A Hexadecimal digit can be converted into Octal form by first converting it into a Decimal Number and then writing its Octal equivalent. 

Example:

Convert (AB4)16 into Octal Number.

Solution:

(AB4)16 is first converted into Decimal form by multiplying each digit with the positional values.

(AB4)16 = A x 162 + B x 161 + 4 x 160 = 10 x 64 + 11 x 16 + 4 x 1 = (820)10

The Number is then converted to Octal form by dividing it by 8 and noting down the remainders. The remainder from bottom to top is the Octal equivalent.

The Number obtained by dividing 820 and noting down the remainders is 1464

So, (AB4)16 = (1464)8 

Fun Facts:

Octal Digit

0

1

2

3

4

5

6

7

Binary Equivalent

000

001

010

011

100

101

110

111


Similarly, a Hexadecimal Number can be converted into Octal form by converting it into a Binary Number. The Binary Number is then divided into groups of three digits and their Octal equivalent is written using the above conversion table.

Disadvantages of using Hexadecimal System

In the Hexadecimal System, 16 digits ranging from 0 to 9 and A to F, are used to represent any Number. The Hexadecimal System is preferred over any other System as it saves space in representing larger Numbers. However, there are some disadvantages too of using the Hexadecimal System, which is as follows:

  • Difficult to read and write

  • Troublesome for operations like multiplication and division 

  • Is the most difficult language while dealing with computer data

Representation of Hexadecimal Digits

Hexadecimal Digit

Equivalent Number into Decimal

Equivalent Binary Number

0

0

0000

1

1

0001

2

2

0010

3

3

0011

4

4

0100

5

5

0101

6

6

0110

7

7

0111

8

8

1000

9

9

1001

A

10

1010

B

11

1011

C

12

1100

D

13

1101

E

14

1110

F

15

1111

Practice Questions

1. Convert the following Hexadecimal Numbers into Binary Numbers:

  1. (67F)16 

  2. (76)16

  3. (AE5)16

  4. (5C2)16

  5. (58B)16

This was all about the Hexadecimal Number System. For more such information, access free resources available on the website useful for the state board, CBSE, ICSE, and competitive examinations. All NCERT Solutions for all subjects are available on the website.

Leave a Reply

Your email address will not be published. Required fields are marked *