Parity bit

Parity bit
7 bits of data

(number of 1s)
8 bits including parity
even odd
0000000 (0) 00000000 10000000
1010001 (3) 11010001 01010001
1101001 (4) 01101001 11101001
1111111 (7) 11111111 01111111

A parity bit is a bit that is added to ensure that the number of bits with the value one in a set of bits is even or odd. Parity bits are used as the simplest form of error detecting code.

There are two variants of parity bits: even parity bit and odd parity bit. When using even parity, the parity bit is set to 1 if the number of ones in a given set of bits (not including the parity bit) is odd, making the number of ones in the entire set of bits (including the parity bit) even. If the number of on-bits is already even, it is set to a 0. When using odd parity, the parity bit is set to 1 if the number of ones in a given set of bits (not including the parity bit) is even, keeping the number of ones in the entire set of bits (including the parity bit) odd. And when the number of set bits is already odd, the odd parity bit is set to 0. In other words, an even parity bit will be set to "1" if the number of 1's + 1 is even, and an odd parity bit will be set to "1" if the number of 1's +1 is odd.

Even parity is a special case of a cyclic redundancy check (CRC), where the 1-bit CRC is generated by the polynomial x+1.

If the parity bit is present but not used, it may be referred to as mark parity (when the parity bit is always 1) or space parity (the bit is always 0).

Contents

Parity

In mathematics, parity refers to the evenness or oddness of an integer, which for a binary number is determined only by the least significant bit. In telecommunications and computing, parity refers to the evenness or oddness of the number of bits with value one within a given set of bits, and is thus determined by the value of all the bits. It can be calculated via an XOR sum of the bits, yielding 0 for even parity and 1 for odd parity. This property of being dependent upon all the bits and changing value if any one bit changes allows for its use in error detection schemes.

Error detection

If an odd number of bits (including the parity bit) are transmitted incorrectly, the parity bit will be incorrect and thus indicates that an error occurred in transmission. The parity bit is only suitable for detecting errors; it cannot correct any errors, as there is no way to determine which particular bit is corrupted. The data must be discarded entirely, and re-transmitted from scratch. On a noisy transmission medium, successful transmission can therefore take a long time, or even never occur. However, parity has the advantage that it uses only a single bit and requires only a number of XOR gates to generate. See Hamming code for an example of an error-correcting code.

Parity bit checking is used occasionally for transmitting ASCII characters, which have 7 bits, leaving the 8th bit as a parity bit.

For example, the parity bit can be computed as follows, assuming we are sending a simple 4-bit value 1001 with the parity bit following on the right, and with ^ denoting an XOR gate:

Transmission sent using even parity:

A wants to transmit:          1001
A computes parity bit value:  1^0^0^1 = 0 
A adds parity bit and sends:  10010
B receives:                   10010
B computes parity:            1^0^0^1^0 = 0
B reports correct transmission after observing expected even result.

Transmission sent using odd parity:

A wants to transmit:          1001
A computes parity bit value:  ~(1^0^0^1) = 1
A adds parity bit and sends:  10011
B receives:                   10011
B computes overall parity:    1^0^0^1^1 = 1
B reports correct transmission after observing expected odd result.

This mechanism enables the detection of single bit errors, because if one bit gets flipped due to line noise, there will be an incorrect number of ones in the received data. In the two examples above, B's calculated parity value matches the parity bit in its received value, indicating there are no single bit errors. Consider the following example with a transmission error in the second bit:

Transmission sent using even parity:

A wants to transmit:          1001
A computes parity bit value:  1^0^0^1 = 0
A adds parity bit and sends:  10010
*** TRANSMISSION ERROR ***
B receives:                   11010
B computes overall parity:    1^1^0^1^0 = 1
B reports incorrect transmission after observing unexpected odd result.

B calculates an odd overall parity indicating the bit error. Here's the same example but now the parity bit itself gets corrupted:

A wants to transmit:          1001
A computes even parity value: 1^0^0^1 = 0
A sends:                      10010
*** TRANSMISSION ERROR ***
B receives:                   10011
B computes overall parity:    1^0^0^1^1 = 1
B reports incorrect transmission after observing unexpected odd result.

Once again, B computes an odd overall parity, indicating the bit error.

There is a limitation to parity schemes. A parity bit is only guaranteed to detect an odd number of bit errors. If an even number of bits have errors, the parity bit records the correct number of ones, even though the data is corrupt. (See also error detection and correction.) Consider the same example as before with an even number of corrupted bits:

A wants to transmit:          1001
A computes even parity value: 1^0^0^1 = 0
A sends:                      10010
*** TRANSMISSION ERROR ***
B receives:                   11011
B computes overall parity:    1^1^0^1^1 = 0
B reports correct transmission though actually incorrect.

B observes even parity, as expected, thereby failing to catch the two bit errors.

Usage

Because of its simplicity, parity is used in many hardware applications where an operation can be repeated in case of difficulty, or where simply detecting the error is helpful. For example, the SCSI and PCI buses use parity to detect transmission errors, and many microprocessor instruction caches include parity protection. Because the I-cache data is just a copy of main memory, it can be disregarded and re-fetched if it is found to be corrupted.

In serial data transmission, a common format is 7 data bit, an even parity bit, and one or two stop bits. This format neatly accommodates all the 7-bit ASCII characters in a convenient 8-bit byte. Other formats are possible; 8 bits of data plus a parity bit can convey all 8-bit byte values.

In serial communication contexts, parity is usually generated and checked by interface hardware (e.g., a UART) and, on reception, the result made available to the CPU (and so to, for instance, the operating system) via a status bit in a hardware register in the interface hardware. Recovery from the error is usually done by retransmitting the data, the details of which are usually handled by software (e.g., the operating system I/O routines).

RAID

Parity data is used by some RAID levels to achieve redundancy. If a drive in the array fails, remaining data on the other drives can be combined with the parity data (using the Boolean XOR function) to reconstruct the missing data.

For example, suppose two drives in a three-drive RAID 5 array contained the following data:

Drive 1: 01101101
Drive 2: 11010100

To calculate parity data for the two drives, an XOR is performed on their data:

        01101101
XOR 11010100
_____________
        10111001

The resulting parity data, 10111001, is then stored on Drive 3.

Should any of the three drives fail, the contents of the failed drive can be reconstructed on a replacement drive by subjecting the data from the remaining drives to the same XOR operation. If Drive 2 were to fail, its data could be rebuilt using the XOR results of the contents of the two remaining drives, Drive 1 and Drive 3:

Drive 1: 01101101
Drive 3: 10111001

as follows:

        10111001
XOR 01101101
_____________
        11010100

The result of that XOR calculation yields Drive 2's contents. 11010100 is then stored on Drive 2, fully repairing the array. This same XOR concept applies similarly to larger arrays, using any number of disks. In the case of a RAID 3 array of 12 drives, 11 drives participate in the XOR calculation shown above and yield a value that is then stored on the dedicated parity drive.

History

A "parity track" was present on the first magnetic tape data storage in 1951. Parity in this form, applied across multiple parallel signals, is known as a transverse redundancy check. This can be combined with parity computed over multiple bits sent on a single signal, a longitudinal redundancy check. In a parallel bus, there is one longitudinal redundancy check bit per parallel signal.

Parity was also used on at least some paper-tape (punched tape) data entry systems (which preceded magnetic tape systems). On the systems sold by British company ICL (formerly ICT) the 1-inch-wide (25 mm) paper tape had 8 hole positions running across it, with the 8th being for parity. 7 positions were used for the data, e.g., 7-bit ASCII. The 8th position had a hole punched in it depending on the number of data holes punched.

For a contrary view, Seymour Cray, premier designer of supercomputers, held parity designs in contempt. He felt it showed poor design—if you designed your transmission paths to be reliable, you would not have to waste resources on parity. His famous quote on this (circa 1963) was "Parity is for farmers" (after the use of the term "parity" in the New Deal). After he later included parity bits on the CDC 7600, Cray reputedly said that "I learned that a lot of farmers buy computers."

See also

  • BIP-8
  • Parity function

External links


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?

Look at other dictionaries:

  • parity bit — par i*ty bit , n. (Computers) The bit within a data structure which is assigned a value of 1 or 0 so as to make the parity[7] of the data structure odd or even. Data structures may or may not have parity bits, dpending on whether the system does… …   The Collaborative International Dictionary of English

  • parity bit — Most modems have the capability to send an extra bit for every byte sent, which is used to help sense errors. This is called the parity bit. It can be set to no parity, mark parity, space parity, odd parity, or even parity. Most BBS s use do not… …   Dictionary of telecommunications

  • parity bit — lyginumo bitas statusas T sritis automatika atitikmenys: angl. parity bit; parity check bit vok. Paritätsbit, n; Paritätskontrollbit, n rus. бит четности, m; контрольный двоичный разряд четности, m; проверочный двоичный разряд четности, m pranc.… …   Automatikos terminų žodynas

  • parity bit — lyginumo bitas statusas T sritis informatika apibrėžtis ↑Bitas, papildantis ↑baitą, kompiuterio ↑žodį arba kitokią duomenų porciją taip, kad visų bitų, lygių vienetui, skaičius būtų lyginis. Naudojamas duomenų įrašymui ir persiuntimui patikrinti …   Enciklopedinis kompiuterijos žodynas

  • parity bit — bit that is transmitted along with the information that indicates whether it is odd or even …   English contemporary dictionary

  • Parity-Bit — Codetafel dualergänztes gerades Paritätsbit (E = even = gerade) Codetafel dualergänztes ungerades Paritätsbit (O = odd = ungerade) Die Paritätskontrol …   Deutsch Wikipedia

  • parity bit — noun (computer science) a bit that is used in an error detection procedure in which a 0 or 1 is added to each group of bits so that it will have either an odd number of 1 s or an even number of 1 s; e.g., if the parity is odd then any group of… …   Useful english dictionary

  • Parity Bit — Prüfbit; zusätzliches ⇡ Bit, durch das jedes ⇡ Byte oder ⇡ Wort in der Weise ergänzt wird, dass die Anzahl aller dualen Einsen entweder immer ungerade (Odd Parity) oder immer gerade (Even Parity) ist. Auf diese Weise sollen einfache… …   Lexikon der Economics

  • parity bit — noun Date: 1957 a bit added to an array of bits (as on magnetic tape) to provide parity …   New Collegiate Dictionary

  • parity bit — noun A bit (binary digit) used to indicate whether the number of bits in a given set with value of one is even or odd. Parity bits are used as a simple error detection code …   Wiktionary

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”