Number System
Number System
Storyline …
• Different number systems
• Why use different ones?
• Binary / Octal / Hexadecimal
• Conversions
• Negative number representation
• Binary arithmetic
• Overflow / Underflow
Number Systems
Four number system
Decimal (10)
Binary (2)
Octal (8)
Hexadecimal (16)
............
Binary numbers?
• Computers work only on two states
– On
– Off
• Basic memory elements hold only two states
– Zero / One
• Thus a number system with two elements
{0,1}
• A binary digit – bit !
Decimal numbers
• Radix = 10
Binary Decimal
1101 = 1 x 23 + 1 x 22 + 0 x 21 + 1 x 20
=1x8+1x4+0x2+1x1
=8+4+0+1
(1101)2 = (13)10
2 13 1 LSB
2 6 0
2 3 1
2 1 1 MSB
0
(13)10 = (1101)2
Octal Decimal
137 = 1 x 82 + 3 x 81 + 7 x 80
= 1 x 64 + 3 x 8 + 7 x 1
= 64 + 24 + 7
(137)8 = (95)10
8 95 7 LSP
8 11 3
8 1 1
0 MSP
(95)10 = (137)8
Hex Decimal
BAD = 11 x 162 + 10 x 161 + 13 x 160
= 11 x 256 + 10 x 16 + 13 x 1
= 2816 + 160 + 13
(BAD)16 = (2989)10
16 2989 13 LSP
16 186 10
16 11 11
0 MSP
(2989)10 = (BAD)16
Why octal or hex?
• Ease of use and conversion
• Three bits make one octal digit
111 010 110 101
7 2 6 5 => 7265 in octal
Three representations
• Signed magnitude
• 1’s complement
• 2’s complement
Sign magnitude
• Make MSB represent sign
• Positive = 0
• Negative = 1
• E.g. for a 3 bit set Sign Bit Bit
– “-2” 1 1 0
MSB LSB
1’s complement
• MSB as in sign magnitude
• Complement all the other bits
• Given a positive number complement all
bits to get negative equivalent
• E.g. for a 3 bit set
– “-2” Sign Bit Bit
1 0 1
0 1 0
2’s complement
• 1’s complement plus one
• E.g. for a 3 bit set
– “-2”
Sign Bit Bit
1 1 0
0 1 0
Decimal Signed 2’s complement 1’s complement
number magnitude
3 011 011 011
2 010 010 010
1 001 001 001
0 000 000 000
-0 100 --- 111
-1 101 111 110
-2 110 110 101
-3 111 101 100
-4 100
No matter which scheme is used we get an even set of numbers but we need one less
(odd: as we have a unique zero)
Binary Arithmetic
• Addition / subtraction
• Unsigned
• Signed
– Using negative numbers
Unsigned: Addition
Like normal decimal addition
B
+ 0 1 0101 (5)
A
0 0 1
+ 1001 (9)
1 1 10
1110 (14)
The carry out of the MSB is neglected
Unsigned: Subtraction
Like normal decimal subtraction
B
A - 0 1 1001 (9)
0 0 11
- 0101 (5)
1 1 0
0100 (4)
A borrow (shown in red) from the MSB implies a
negative
Signed arithmetic
001 ( 1)10
101 (-3)10
110 (-2)10