NumberSystem
NumberSystem
• Digits Used: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
• Base: 10
• This is the number system we use in everyday life.
• Each digit’s position represents a power of 10.
• Example:
(347) = 3 X 102 + 4 X 101 + 7X100
10
• Digits Used: 0, 1
• Base: 2
• The binary system is used internally by computers to represent data
and perform calculations.
• Each digit’s position represents a power of 2.
• Example:
(1011)2= 1X 23 + 0X 22 + 1X 21 + 1X 20 = (11)10
Solution:
∴ (14)10 = 11102
Binary to decimal conversion:
(Positional weight) 2 4 23 22 21 20
Binary number 10101
= (1 x 2 4) + (0 x 23) + ( 1x 22 ) + ( 0 x 21 ) + (1 x 20)
= 16 + 0+ 4+ 0+ 1
= (21) 10