Signed Magnitude

Use one bit to represent sign, 0 = postive and 1 = negative.

Other bits represent the absolute value of anumber.

Most-significant bit used for sign bit.

For example (assuming 8-bits):

 1210 = 00001100 
-1210 = 10001100 

Two problems with signed magnitude.

Two representations for zero.

Addition of a positive and a negative number awkward to implement.

Index