Representing Negative Numbers · Sign Bit · Conversion Method
CSZoneEdexcel GCSE Computer Science 1CP2
Why Two's Complement?
Representing Negative Numbers in Binary
Computers need to represent negative numbers. Two's complement is the standard method. The most significant bit (MSB) — the leftmost bit — acts as the sign bit: 0 = positive, 1 = negative.
In 8-bit two's complement, the MSB column has value -128 (not +128)
Range of 8-bit two's complement: -128 to +127
If MSB = 1, the number is negative; if MSB = 0, it is positive