Class 11 Number System Notes: Important Points

Share with others

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Number System Notes
Number System Notes

Introduction

A number system is a method to represent (write) numbers. Every number system has a set of unique characters or literals. The count of these literals is called the radix or base of the number system. The four different number systems used in the context of computer are given below:

Name of Number SystemBase of Number SystemDigits/Symbols included in Number System
Binary Number System20, 1
Octal Number System80, 1, 2, 3, 4, 5, 6, 7
Decimal Number System100, 1, 2, 3, 4, 5, 6, 7, 8, 9
Hexa Decimal160 – 9 and A – F
Number systems notes

1. Decimal Number System

The decimal number system is used in our day-to-day life. It is known as base-10 system since 10 digits (0 to 9) are used. A number is presented by its two values — symbol value (any digit from 0 to 9) and positional value (in terms of base value).

Following table shows the integer and fractional part of decimal number 237.25 along with computation of the decimal number using positional values.

Digit237.25
Position Number210-1-2
Positional Value10210110010-110-2
Number System Notes

Add the product of positional value and corresponding digit to get decimal number.

2 x 102 + 3 x 101 + 7 x 100 + 2 x 10-1 + 5 x 10-2 = 237.25

2. Decimal Number System

The ICs (Integrated Circuits) in a computer are made up of a large number of transistors which are activated by the electronic signals (low/high) they receive.

The ON/ high and OFF/low state of a transistor is represented using the two digits 1 and 0, respectively. These two digits 1 and 0 form the binary number system.

This system is also referred as base-2 system as it has two digits only. Some examples of binary numbers are 101011, 110001, 1010.101

The following table shows Binary value for (0–9) digits of decimal number system.

DecimalBinary
00
11
210
311
4100
5101
6110
7111
81000
91001
Number System Notes

3. Octal Number System

Octal number system was devised for compact representation of the binary numbers. Octal number system is called base-8 system as it has total eight digits (0-7).

Three binary digits (8=23) are sufficient to represent any octal digit.

Following table shows the decimal and binary equivalent of 8 octal digits. Examples of octal numbers are (145)8, (245)8, and (235)8.

Octal DigitDecimal Value3 -bit Binary Number
00000
11001
22010
33011
44100
55101
66110
77111
Number System Notes

4. Hexadecimal Number System

Hexadecimal numbers are also used for compact representation of binary numbers. It consists of 16 unique symbols (0 – 9, A–F), and is called base-16 system.

Four binary digits (16=24) are sufficient to represent any hexadecimal number.

Note here that the decimal numbers 10 through 15 are represented by the letters A through F. Examples of Hexadecimal numbers are (43A)16, (1B)16

Following table shows Decimal and Binary equivalent of hexadecimal numbers 0–9, A–F

Hexadecimal SymbolDecimal Value4-bit Binary Number
000000
110001
220010
330011
440100
550101
660110
770111
881000
991001
A101010
B111011
C121100
D131101
E141110
F151111
Number System Notes

Applications of Hexadecimal Number System

1. To access 16-bit memory address, a programmer has to use 16 binary bits, which is difficult to deal with. To simplify the address representation, hexadecimal and octal numbers are used. Let us consider a 16- bit memory address 1100000011110001. Using the hexadecimal notation, this address is mapped to “C0F1” which is more easy to remember.

2. Hexadecimal numbers are also used for describing the colours on the webpage. Colour codes are written in hexadecimal form for compact representation. For example, 24-bit code for RED colour is 11111111,00000000,00000000. The equivalent hexadecimal notation is (FF,00,00), which can be easily remembered and used

Conversion between Number Systems

In this section we will learn how to convert a number from one number system to another number system for better understanding of the number representation in computers. Decimal number system is most commonly used by humans, but digital systems understand binary numbers; whereas Octal and hexadecimal number systems are used to simplify the binary representation.

1. Conversion from Decimal to other Number Systems

Steps to convert a decimal number to any other number system (binary, octal or hexadecimal) are:

  1. Divide the given number by the base value (b) of the number system in which it is to be converted
  2. Note the remainder
  3. Keep on dividing the quotient by the base value and note the remainder till the quotient is zero
  4. Write the noted remainders in the reverse order (from bottom to top)

A. Decimal to Binary Conversion

The decimal number is repeatedly divided by 2 following the steps given in above till the quotient is 0. Record the remainder after each division and finally write the remainders in reverse order in which they are computed.

Number System Notes
Decimal to Binary : Number System Notes

Example 1: Convert (122)10 to binary number.

Number System Notes
Decimal to Binary: Number System Notes

Example 2: Convert (145)10 to binary number.

QuotientRemainder
145/2721
72/2360
36/2180
18/290
9/241
4/220
2/210
1/201
Number System Notes

(145)10 = 10010001 #Write the remainder in reverse order (from Bottom to Top)

Example 3: Convert (218)10 to binary number.

QuotientRemainder
218/21090
109/2541
54/2270
27/2131
13/261
6/230
3/211
1/201
Number System Notes

(218)10 = 11011010

Q1. Express the following decimal numbers into Binary numbers.

(i) (715)10

(ii) (625)10

(iii) (660)10

(iv) (548)10

(v) (268)10

B. Decimal to Octal Conversion

Base value of octal is 8, the decimal number is repeatedly divided by 8 to obtain its equivalent octal number.

Number System Notes
Decimal to Octal : Number System Notes

Example 4: Convert (122)10 to Octal number.

QuotientRemainder
122/8152
15/817
1/801

(122)10 = (172)8 #Write the remainder in reverse order(Bottom to Top)

Example 5: Convert (278)10 to Octal number.

QuotientRemainder
278/8346
34/842
4/804

(278)10 = (426)8

Example 6: Convert (328)10 to Octal number.

QuotientRemainder
328/8410
41/851
5/805

(328)10 = (510)8

Q2. Express the following Decimal numbers into Octal numbers.

(i) (269)10

(ii) (780)10

(iii) (590)10

(iv) (400)10

(v) (983)10

C. Decimal to Hexadecimal Conversion

The base value of hexadecimal is 16, the decimal number is repeatedly divided by 16 to obtain its equivalent hexadecimal number.

Number System Notes
Decimal to Hexadecimal: Number System Notes

Example 7: Convert (785)10 to Hexadecimal number.

QuotientRemainder
785/16491
49/1631
3/1603
Number System Notes

(785)10 = (311)16

Example 8: Convert (485)10 to Hexadecimal number.

QuotientRemainder
485/16305
30/16114
1/1601
Number System Notes

(485)10 = (1E5)16 #10 – 15 are represented by Alphabet A – F respectively

Q3. Express the following Decimal numbers into Hexadecimal numbers.

(i) (970)10

(ii) (520)10

(iii) (750)10

(iv) (350)10

(v) (820)10

Conversion from other Number Systems to Decimal Number System

We can use the following steps to convert the given number with base value b to its decimal equivalent. Base value b can be 2, 8 and 16 for binary, octal and hexadecimal number system, respectively.

  1. Write the position number for each alphanumeric symbol in the given number.
  2. Get positional value for each symbol by raising its position number to the base value b symbol
    in the given number.
  3. Multiply each digit with the respective positional value to get a decimal value.
  4. Add all these decimal values to get the equivalent decimal number.

(A) Binary Number to Decimal Number

Since binary number system has base 2, the positional values are computed in terms of powers of 2.

Example 9. Convert (1101)2 into decimal number.

Digit1101
Position Number3210
Position Value23222120
Decimal Number1 × 231 x 220 x 211 x 20
8401

(1101)2 = 1 × 23 + 1 x 22 + 0 x 21 + 1 x 20

(1101)2 = 8 + 4 + 0 + 1

(1101)2 = (13)10

Example 10. Convert (1011010)2 into decimal number.

(1011010)₂ = (1 × 2⁶) + (0 × 2⁵) + (1 × 2⁴) + (1 × 2³) + (0 × 2²) + (1 × 2¹) + (0 × 2⁰)

(1011010)₂ = 64 + 0 + 16 + 8 + 0 + 2 + 0

(1011010)₂ = (90)10

Example 11. Convert (1000111)2 into decimal number.

(1000111)₂ = (1 × 2⁶) + (0 × 2⁵) + (0 × 2⁴) + (0 × 2³) + (1 × 2²) + (1 × 2¹) + (1 × 2⁰)

(1000111)₂ = 64 + 0 + 0 + 0 + 4 + 2 + 1

(1000111)₂ = (71)10

Example 12. Convert (11110101)2 into decimal number.

(11110101)₂ = (1 × 2⁷) + (1 × 2⁶) + (1 × 2⁵) + (1 × 2⁴) + (0 × 2³) + (1 × 2²) + (0 × 2¹) + (1 × 2⁰)

(11110101)₂ = 128 + 64 + 32 + 16 + 0 + 4 + 0 + 1

(11110101)₂ = (245)10

(B) Octal Number to Decimal Number

Since Octal number system has base 8, the positional values are computed in terms of powers of 8.

Example 13. Convert (173)8 into decimal number.

Digit173
Position Number210
Position Value828180
Decimal Number1 × 827 x 813 x 80
64563

(173)8 = (1 × 8²) + (7 × 8¹) + (3 × 8⁰)

(173)8 = 64 + 56 + 3

(173)8 = (123)10

Example 14. Convert (350)8 into decimal number.

(350)8 = (3 × 8²) + (5 × 8¹) + (0 × 8⁰)

(350)8 = 192 + 40 + 0

(350)8 = (232)10

Example 15. Convert (725)8 into decimal number.

(725)8 = (7 × 8²) + (2 × 8¹) + (5 × 8⁰)

(725)8 = 448 + 16 +5

(725)8 = (469)10

(B) Hexadecimal Number to Decimal Number

Since Hexadecimal number system has base 16, the positional values are computed in terms of powers of 16.

Example 16. Convert (3A5)16 into decimal number

Digit3A5
Position Number210
Position Value162161160
Decimal Number3 × 16210 x 1615 x 160
7681605

(3A5)16 = (3 × 16²) + (10 × 16¹) + (5 × 16⁰)

(3A5)16 = 768 + 160 + 5

(3A5)16 = (933)10

Example 17. Convert (2B)16 into decimal number

(2B)₁₆ = (2 × 16¹) + (11 × 16⁰)

(2B)₁₆ = 32 + 11

(2B)₁₆ = (43)10

Example 18. Convert (97)16 into decimal number

(97)₁₆ = (9 × 16¹) + (7 × 16⁰)

(97)₁₆ = 144 + 7

(97)₁₆ = (151)10

Q1. Why 3 bits in a binary number are grouped together to get octal number?

Ans. The base value of octal number system is 8. Convert value 8 in terms of exponent of 2, i.e., 8=23. Hence,
three binary digits are sufficient to represent all 8 octal digits.

Conversion from Binary Number to Octal/Hexadecimal Number and Vice-Versa

A binary number is converted to octal or hexadecimal number by making groups of 3 and 4 bits, respectively,
and replacing each group by its equivalent octal/hexadecimal digit.

(A) Binary Number to Octal Number

Octal DigitDecimal Value3 -bit Binary Number
00000
11001
22010
33011
44100
55101
66110
77111

Example 19. Convert (10101100)2 to octal number

Make group of 3-bits of the given binary number (right to left) and write octal number for each 3-bit group.

010 —- 101 —- 100

2 —- 5 —– 4

(10101100)2 = (254)8

NOTE: In case number of bits in a binary number is not multiple of 3, then add required number of 0s on most significant position of the binary number.

Example 20. Convert (111101010)2 to octal number

111—–101—–010

7 ——-5 ——–2

(111101010)2 = (752)8

(B) Octal Number to Binary Number

Each octal digit is an encoding for a 3-digit binary number. Octal number is converted to binary by replacing each octal digit by a group of three binary digits.

Example 21. Convert (705)8 to binary number.

7 ——- 0 ——-5

111 —-000 —101

(705)8 = (111000101)2

Example 22. Convert (134)8 to binary number.

1———-3———–4

001——-011———100

(134)8 = (001011100)2

(C) Binary Number to Hexadecimal Number

Hexadecimal SymbolDecimal Value4-bit Binary Number
000000
110001
220010
330011
440100
550101
660110
770111
881000
991001
A101010
B111011
C121100
D131101
E141110
F151111

Make group of 4-bits of the given binary number (right to left) and write hexadecimal number for each 4-bit group.

Example 23. Convert (0110101100)2 to Hexadecimal number.

#Make group of 4-bits and write hexadecimal symbol for each group

Binary Digits:                            0001---- 1010 ---- 1100               

Hexadecimal Digits: 1 ---------A-----------C

(0110101100)2 = (1AC)16

Example 24. Convert (110100110101)2 to Hexadecimal number.

Binary Digits:                             1101 ------ 0011 -------0101

Hexadecimal Digits: D ----------3 -----------5

(110100110101)2 = (D35)16

(D) Hexadecimal Number to Binary Number

Each hexadecimal symbol is an encoding for a 4-digit binary number. Hence, the binary equivalent of a hexadecimal number is obtained by substituting 4-bit binary equivalent of each hexadecimal digit and combining them together.

Example 25. Convert (23D)16 to binary number.

Hexadecimal digits:   2 ---------- 3 ------------D

Binary Digits : 0010 -------0011 -------- 1101

(23D)16 = (001000111101)2

Example 26. Convert (F018)16 to binary number.

Hexadecimal digits: F ---------- 0 ------------1 ------------ 8

Binary Digits : 1111 -------0000 -------- 0001 --------1000

(F018)16 = (1111000000011000)2

Example 27. Convert (172)16 to binary number.

Hexadecimal digits:        1 ----------- 7 ----------- 2
Binary Digits: 0001 ------0111 ----------0010

(172)16 = (000101110010)2

Conversion of a Number with Fractional Part

We will learn about conversion of numbers with a fractional part.

(A) Decimal Number with Fractional Part to another Number System

To convert the fractional part of a decimal number, repeatedly multiply the fractional part by the base value b till the fractional part becomes 0. Write integer part from top to bottom to get equivalent number in that number system.

Example 28. Convert (0.25)10 to binary

                               Integer Part
0.25 × 2 = 0.50 0
0.50 × 2 = 1.00 1

(0.25)10 = (0.01)2

NOTE: If the fractional part does not become 0 in successive multiplication, then stop after, say 10 multiplications.

NOTE: In some cases, fractional part may start repeating, then stop further calculation.

Example 29. Convert (0.675)10 to binary.

                                          Integer part
0.675 × 2 = 1.350 1
0.350 × 2 = 0.700 0
0.700 × 2 = 1.400 1
0.400 × 2 = 0.800 0
0.800 × 2 = 1.600 1
0.600 × 2 = 1.200 1
0.200 × 2 = 0.400 0

Since the fractional part (.400) is the repeating value in the calculation, the multiplication is stopped. Write the integer part from top to bottom.

(0.675)10 = (0.1010110)2

Example 30. Convert (0.675)10 to Octal

                                  Integer part
0.675 × 8 = 5.400 5
0.400 × 8 = 3.200 3
0.200 × 8 = 1.600 1
0.600 × 8 = 4.800 4
0.800 × 8 = 6.400 6

Since the fractional part (.400) is the repeating value in the calculation, the multiplication is stopped.

(0.675)10= (0.53146)8

Example 31. Convert (0.70)10 to Octal

                                        Integer Part
0.70 x 8 = 5.60 5
0.60 x 8 = 4.80 4
0.80 x 8 = 6.40 6
0.40 x 8 = 3.20 3
0.20 x 8 = 1.60 1

(0.70)10 = (0.54631)8

Example 32. Convert (0.675)10 to hexadecimal form.

                                            Integer Part
0.675 × 16 = 10.800 A (Hexadecimal symbol for 10)
0.800 × 16 = 12.800 C (Hexadecimal symbol for 12)



Since the fractional part (.800) is repeating, the multiplication is stopped. Write the integer part from
top to bottom to get hexadecimal equivalent for the fractional part.

(0.675)10 = (0.AC)16

(B) Non-decimal Number with Fractional Part to Decimal Number System

Example 33. Convert (100101.101)2 into decimal

100101.101
2524232221202-12-22-3
1 x 250 x 240 x 231 x 220 x 211 x 201 x 2-10 x 2-21 x 2-3
3200401.0.500.125

(100101.101)2 = (37.625)10

Example 34. Convert (605.12)8 into decimal number.

605.12
828180.8-18-2
6 x 820 x 815 x 80.1 x 8-12 x 8-2
38405.125.03125

(605.12)8 = (389.15625)10

(C) Fractional Binary Number to Octal or Hexadecimal Number

To convert the fractional binary number into octal or hexadecimal value, substitute groups of 3-bit or 4-bit in integer part( start from right to left) by the corresponding digit. Similarly, make groups of 3-bit or 4-bit for fractional part starting from left to right, and substitute each group by its equivalent digit or symbol in Octal or Hexadecimal number system.

Example 35. Convert (10101100.01011)2 to octal number.

Make perfect group of 3 bits

010------101-----100 . 010-----110
2 ---------5--------4 . 2 --------6

Convert (10101100.01011)2 = (254.23)8

NOTE: Make 3-bit groups from right to left for the integer part and left to right for the fractional part.

Example 36. Convert (10101100.010111)2 to Hexadecimal number.

Make perfect group of 4 bits

1010 ---- 1100 . 0101 ----- 1100
A --------C . 5 ---------C

(10101100.010111)2 = (AC.5C)16


Click for Class 11 Number System MCQ

Click for Class 11 Number System NCERT Solutions


Class XI & XII IP Syllabus 2024-25


Class XI & XII CS Syllabus 2024-25


Chapter Wise MCQ

1. Functions in Python

2. Flow of Control (Loop and Conditional statement)

3. 140+ MCQ on Introduction to Python

4. 120 MCQ on String in Python

5. 100+ MCQ on List in Python

6. 50+ MCQ on Tuple in Python

7. 100+ MCQ on Flow of Control in Python

8. 60+ MCQ on Dictionary in Python


Important Links

100 Practice Questions on Python Fundamentals

120+ MySQL Practice Questions

90+ Practice Questions on List

50+ Output based Practice Questions

100 Practice Questions on String

70 Practice Questions on Loops

70 Practice Questions on if-else


Disclaimer : I tried to give you the correct notes of ” Class 11 Number System Notes: Important Points” , but if you feel that there is/are mistakes in the handouts or explanation of “Class 11 Number System Notes: Important Points“ given above, you can directly contact me at csiplearninghub@gmail.com. The above Notes of “Class 11 Number System Notes: Important Points ” are created by referring NCERT Book of Class 11. Screenshots used in this article are taken from NCERT book.


Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points

Class 11 Number System Notes: Important Points


Share with others

Leave a Reply

error: Content is protected !!