The simplest way to represent negative numbers is to add an extra bit at the front of any binary number to represent the sign of the number.

  • 1 represents a negative number
  • 0 represents a positive number

In order to display the number -22, we first need to decide figure out what the positive binary representation is. Remember that each column has a specific value which is calculated by where N is the column number.

Sign Bit

16

8

4

2

1

0

1

0

1

1

0

As we want to show -22, we must set the sign bit to be 1. As such -22 is

Sign Bit

16

8

4

2

1

1

1

0

1

1

0

So let’s look at the binary representations for -10 to +9.

Decimal

Binary

 

Decimal

Binary

-10

11010

0

00000 or 10000

-9

11001

1

00001

-8

11000

2

00010

-7

10111

3

00011

-6

10110

4

00100

-5

10101

5

00101

-4

10100

6

00110

-3

10011

7

00111

-2

10010

8

01000

-1

10001

9

01001