Template:Refimprove In computer science, the sign bit is a bit in a signed number representation that indicates the sign of a number. Although only signed numeric data types have a sign bit, it is invariably located in the most significant bit position,<ref name=":0">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> so the term may be used interchangeably with "most significant bit" in some contexts.

Almost always, if the sign bit is 0, the number is non-negative (positive or zero).<ref name=":0" /> If the sign bit is 1 then the number is negative. Formats other than two's complement integers allow a signed zero: distinct "positive zero" and "negative zero" representations, the latter of which does not correspond to the mathematical concept of a negative number.

When using a complement representation, to convert a signed number to a wider format the additional bits must be filled with copies of the sign bit in order to preserve its numerical value,<ref name="Bryant" />Template:Rp a process called sign extension or sign propagation.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Sign bit weight in Two's complementEdit

Bits Value using Two's complement
Template:Mono 0
Template:Mono 1
Template:Mono 7
Template:Mono −8
Template:Mono −7
Template:Mono −1

Two's complement is by far the most common format for signed integers. In Two's complement, the sign bit has the weight Template:Math where w is equal to the bits position in the number.<ref name=":0" /> With an 8-bit integer, the sign bit would have the value of Template:Math, or -128. Due to this value being larger than all the other bits combined, having this bit set would ultimately make the number negative, thus changing the sign.

Sign bit weight in Ones' complementEdit

Bits Value using One's complement
Template:Mono 0
Template:Mono 1
Template:Mono 7
Template:Mono −7
Template:Mono −6
Template:Mono −0

Ones' complement is similar to Two's Complement, but the sign bit has the weight Template:Math where w is equal to the bits position in the number.Template:Fact With an 8-bit integer, the sign bit would have a value of Template:Math, or -127. This allows for two types of zero: positive and negative, which is not possible with Two's complement.

Sign bit in sign magnitude integersEdit

Bits Value using sign magnitude
Template:Mono 0
Template:Mono 1
Template:Mono 7
Template:Mono −0
Template:Mono −1
Template:Mono −7

Using sign magnitude, the sign bit directly determines the sign. If the sign bit is 0, the number is positive; if the sign bit is 1, the number is negative.<ref name="Bryant" />Template:Rp Similarly with Ones' Complement, this allows for both a positive and a negative zero.

Sign bit in floating-point numbersEdit

Floating-point numbers, such as IEEE format, IBM format, VAX format, and even the format used by the Zuse Z1 and Z3 use a Sign and magnitude representation.Template:Fact

ReferencesEdit

Template:Reflist


Template:Comp-sci-stub