Digital Logic Design Lecture 3
Index
- Looking back to conversion methods
- 8 Bit Signed Number & Signed Magnitude Representation
- Ones Complement Representation
- Two’s Complement Basics
- Summary of Two’s Bit Complement
Content
Looking back to conversion methods
Refer DLD Lecture 2
8 Bit signed Number & Signed Magnitude Representation
To represent a positive number or a negative number we use a bit.
Positive
For Positive we use bit zero ( 0 ) in the MSB Position to represent a positive binary number.
Negative
For Negative we use a bit ( 1 ) in the MSB Position to represent a negative binary number.
Ones Complement Representation
We can have this only for binary numbers only.
In this complement representation the bits are flipped for lets say a not gate.
for example 1011000110
would be 0100111001
In a two’s complement system, the binary number 1000
does not represent -7. It represents -8. Let’s clarify this with more detail.
Two’s Complement Basics
-
Positive Numbers:
- Positive numbers are represented in their straightforward binary form.
-
Negative Numbers:
- Negative numbers are represented by taking the two’s complement of their absolute value.
Example: Representing +7 and -7
-
+7 in 4-bit Binary:
0111
-
-7 in 4-bit Two’s Complement:
- Start with the binary of +7:
0111
- Invert all bits:
1000
- Add 1:
1000
+1
=1001
- So,
-7
is represented as1001
.
- Start with the binary of +7:
Correct Representation of 1000
1000
in a 4-bit two’s complement system represents -8, not -7.
Range of 4-bit Two’s Complement
In a 4-bit two’s complement system, the values range from -8 to +7:
0000
= 00001
= 10010
= 20011
= 30100
= 40101
= 50110
= 60111
= 71000
= -81001
= -71010
= -61011
= -51100
= -41101
= -31110
= -21111
= -1
Summary of Two’s Bit Complement
- +7:
0111
- -7:
1001
- +8 is not representable in a 4-bit two’s complement system, as the range is from -8 to +7.
For an 8-bit two’s complement system, the range is from -128 to +127:
- +127:
0111 1111
- -128:
1000 0000
This system ensures that each binary number has a unique interpretation, avoiding any confusion.