Numbersystem
Numbersystem
C o mppuutterer FFununddaammenenttaallss::
P r ad
Pr adeeepep KK.. SSiinhanha && PPrriititi SSiinhanha
Digital Electronics:
Introduction to Number System
Daffodil International University
Learning Objectives
§ Characteristics
§ Use symbols such as I for 1, II for 2, III for 3, IIII for 4,
IIIII for 5, etc
§ Each symbol represents the same value regardless of its
position in the number
§ The symbols are simply added to find out the value of a
particular number
§ Difficulty
§ It is difficult to perform arithmetic with such a number
system
Posit ional N um ber Syst em s
§ Characterist ics
Characterist ics
§ A positional number system
Example
= 2000 + 500 + 80 + 6
Binary N um ber Syst em
Characterist ics
§ A positional number system
§ Has only 2 symbols or digits (0 and 1). Hence
base = 2 its
§ The maximum value of a single digit is 1 (one
less than the value of the base)
§ Each position of a digit represents a specific
power of the base (2)
§ This number system is used in computers
Exam ple
= 16 + 0 + 4 + 0 + 1
= 2110
Represent ing N um bers in Different N um ber
Syst em s
101012 = 2110
Bit
Characterist ics
§ A positional number system
§ Has total 8 symbols or digits (0, 1, 2, 3, 4, 5, 6, 7).
Hence, its base = 8
Exam ple
= 1024 + 0 + 40 + 7
= 107110
Hexadecim al N um ber Syst em
Characterist ics
§ A positional number system
§ Has total 16 symbols or digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
A, B, C, D, E, F). Hence its base = 16
§ The symbols A, B, C, D, E and F represent the decimal
values 10, 11, 12, 13, 14 and 15 respectively
§ The maximum value of a single digit is 15 (one less than
the value of the base)
Exam ple
1AF16 = (1 x 162) + (A x 161) + (F x 160)
= 1 x 256 + 10 x 16 + 15 x 1
= 256 + 160 + 15
= 43110
Convert ing a N um ber of Anot her Base t o a
Decim al N um ber
Method
Step 1: Determine the column (positional) value of
each digit
Exam ple
47068 = ?10
Common
values
multiplied by
47068 = 4 x 83 + 7 x 82 + 0 x 81 + 6 x 80 the
corresponding
= 4 x 512 + 7 x 64 + 0 + 6 x 1 digits
= 2048 + 448 + 0 + 6 Sum of these
products
= 250210
Convert ing a Decim al N um ber t o a N um ber of
Anot her Base
( Continued from previous slide..)
Exam ple
95210 = ?8
Solut ion:
8 952
119 s 0
Remainder
14 7
1 6
0 1
Method
Step 1: Convert the number to a
original number decimal
(base 10)
Step 2: Convert the decimal number so obtained
to the new base number
Exam ple
5456 = ?4
Solution:
Step 1: Convert from base 6 to base 10
5456 = 5 x 62 + 4 x 61 + 5 x 60
= 5 x 36 + 4 x 6 + 5 x 1
= 180 + 24 + 5
= 20910
4 209 Remainders
52 1
13 0
3 1
0 3
Met hod
Step 1: Divide the digits into groups of three starting
from the right
Exam ple
11010102 = ?8
001 101010
0012 = 0 x 22 + 0 x 21 + 1 x 20 = 1
1012 = 1 x 22 + 0 x 21 + 1 x 20 = 5
0102 = 0 x 22 + 1 x 21 + 0 x 20 = 2
5628 = ?2
Step 1: Convert each octal digit to 3 binary digits
58 = 1012, 68 = 1102, 28 = 0102
Step 2: Combine the binary groups
5628 = 101 110 010
5 6 2
Exam ple
1111012 = ?16
0011 1101
Met hod
Exam ple
2AB16 = ?2
Binary Point
Position 4 3 2 1 0 . -1 -2 -3 -4
Quantity 16 8 4 2 1 1/
16
1 2 1 4 1 8
Represented / / /
Exam ple
Octal Point
Position 3 2 1 0 . -1 -2 -3
Position Value
83 82 81 80 8-1 8-2 8-3
Quantity 512 64 8 1 1/ 1/
64 512
1 8
Represented /
Exam ple
Thank You