<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://en.zaoniao.it/index.php?action=history&amp;feed=atom&amp;title=Error_detection_and_correction</id>
	<title>Error detection and correction - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://en.zaoniao.it/index.php?action=history&amp;feed=atom&amp;title=Error_detection_and_correction"/>
	<link rel="alternate" type="text/html" href="http://en.zaoniao.it/index.php?title=Error_detection_and_correction&amp;action=history"/>
	<updated>2026-05-15T09:28:19Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>http://en.zaoniao.it/index.php?title=Error_detection_and_correction&amp;diff=4817&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;In information theory and coding theory with applications in computer science and telecommunication, '''error detection and correction''' or '''error control''...&quot;</title>
		<link rel="alternate" type="text/html" href="http://en.zaoniao.it/index.php?title=Error_detection_and_correction&amp;diff=4817&amp;oldid=prev"/>
		<updated>2019-05-18T11:08:42Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;In &lt;a href=&quot;/index.php?title=Information_theory&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Information theory (page does not exist)&quot;&gt;information theory&lt;/a&gt; and &lt;a href=&quot;/Coding_theory&quot; title=&quot;Coding theory&quot;&gt;coding theory&lt;/a&gt; with applications in &lt;a href=&quot;/Computer_science&quot; title=&quot;Computer science&quot;&gt;computer science&lt;/a&gt; and &lt;a href=&quot;/index.php?title=Telecommunication&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Telecommunication (page does not exist)&quot;&gt;telecommunication&lt;/a&gt;, &amp;#039;&amp;#039;&amp;#039;error detection and correction&amp;#039;&amp;#039;&amp;#039; or &amp;#039;&amp;#039;&amp;#039;error control&amp;#039;&amp;#039;...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;In [[information theory]] and [[coding theory]] with applications in [[computer science]] and [[telecommunication]], '''error detection and correction''' or '''error control''' are techniques that enable reliable delivery of [[digital data]] over unreliable [[communication channel]]s. Many communication channels are subject to [[noise (electronics)|channel noise]],&amp;amp;lt;!--really need an article on [[channel noise]]--&amp;amp;gt; and thus errors may be introduced during transmission from the source to a receiver. Error detection techniques allow detecting such errors, while error correction enables reconstruction of the original data in many cases.&lt;br /&gt;
&lt;br /&gt;
== Definitions ==&lt;br /&gt;
The general definitions of the terms are as follows:&lt;br /&gt;
* ''Error detection '' is the detection of errors caused by noise or other impairments during transmission from the transmitter to the receiver.&lt;br /&gt;
* ''Error correction'' is the detection of errors and reconstruction of the original, error-free data.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
The modern development of [[error-correcting codes]] in 1947 is due to [[Richard W. Hamming]]. A description of Hamming's code appeared in [[Claude Shannon]]'s ''A Mathematical Theory of Communication'' and was quickly generalized by [[Marcel J. E. Golay]].&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
The general idea for achieving error detection and correction is to add some [[Redundancy (information theory)|redundancy]] (i.e., some extra data) to a message, which receivers can use to check consistency of the delivered message, and to recover data that has been determined to be corrupted. Error-detection and correction schemes can be either [[systematic code|systematic]] or non-systematic: In a systematic scheme, the transmitter sends the original data, and attaches a fixed number of ''check bits'' (or ''parity data''), which are derived from the data bits by some [[deterministic algorithm]]. If only error detection is required, a receiver can simply apply the same algorithm to the received data bits and compare its output with the received check bits; if the values do not match, an error has occurred at some point during the transmission. In a system that uses a non-systematic code, the original message is transformed into an encoded message that has at least as many bits as the original message.&lt;br /&gt;
&lt;br /&gt;
Good error control performance requires the scheme to be selected based on the characteristics of the communication channel. Common [[channel model]]s include memory-less models where errors occur randomly and with a certain probability, and dynamic models where errors occur primarily in [[burst error|bursts]]. Consequently, error-detecting and correcting codes can be generally distinguished between ''random-error-detecting/correcting'' and ''burst-error-detecting/correcting''. Some codes can also be suitable for a mixture of random errors and burst errors.&lt;br /&gt;
&lt;br /&gt;
If the [[channel capacity]] cannot be determined, or is highly variable, an error-detection scheme may be combined with a system for retransmissions of erroneous data. This is known as [[#Automatic repeat request|automatic repeat request]] (ARQ), and is most notably used in the Internet. An alternate approach for error control is [[#Hybrid schemes|hybrid automatic repeat request]] (HARQ), which is a combination of ARQ and error-correction coding.&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
Error correction may generally be realized in two different ways:&lt;br /&gt;
* ''[[Automatic repeat request]] (ARQ)'' (sometimes also referred to as ''backward error correction''): This is an error control technique whereby an error detection scheme is combined with requests for retransmission of erroneous data. Every block of data received is checked using the error detection code used, and if the check fails, retransmission of the data is requested – this may be done repeatedly, until the data can be verified.&lt;br /&gt;
* ''[[Forward error correction]] (FEC)'': The sender encodes the data using an ''error-correcting code (ECC)'' prior to transmission. The additional information (redundancy) added by the code is used by the receiver to recover the original data. In general, the reconstructed data is what is deemed the &amp;quot;most likely&amp;quot; original data.&lt;br /&gt;
&lt;br /&gt;
ARQ and FEC may be combined, such that minor errors are corrected without retransmission, and major errors are corrected via a request for retransmission: this is called ''[[hybrid automatic repeat-request]] (HARQ)''.&lt;br /&gt;
&lt;br /&gt;
== Error detection schemes ==&lt;br /&gt;
Error detection is most commonly realized using a suitable [[hash function]] (or [[checksum]] algorithm). A hash function adds a fixed-length ''tag'' to a message, which enables receivers to verify the delivered message by recomputing the tag and comparing it with the one provided.&lt;br /&gt;
&lt;br /&gt;
There exists a vast variety of different hash function designs. However, some are of particularly widespread use because of either their simplicity or their suitability for detecting certain kinds of errors (e.g., the [[cyclic redundancy check]]'s performance in detecting [[burst error]]s).&lt;br /&gt;
&lt;br /&gt;
A random-error-correcting code based on [[Maximum likelihood decoding#Minimum distance decoding|minimum distance]] coding can provide a strict guarantee on the number of detectable errors, but it may not protect against a [[preimage attack]]. A repetition code, described in the section below, is a special case of error-correcting code: although rather inefficient, a repetition code is suitable in some applications of error correction and detection due to its simplicity.&lt;br /&gt;
&lt;br /&gt;
=== Repetition codes ===&lt;br /&gt;
&lt;br /&gt;
A ''repetition code'' is a coding scheme that repeats the bits across a channel to achieve error-free communication. Given a stream of data to be transmitted, the data are divided into blocks of bits. Each block is transmitted some predetermined number of times. For example, to send the bit pattern &amp;quot;1011&amp;quot;, the four-bit block can be repeated three times, thus producing &amp;quot;1011 1011 1011&amp;quot;. However, if this twelve-bit pattern was received as &amp;quot;1010 1011 1011&amp;quot; – where the first block is unlike the other two – it can be determined that an error has occurred.&lt;br /&gt;
&lt;br /&gt;
A repetition code is very inefficient, and can be susceptible to problems if the error occurs in exactly the same place for each group (e.g., &amp;quot;1010 1010 1010&amp;quot; in the previous example would be detected as correct). The advantage of repetition codes is that they are extremely simple, and are in fact used in some transmissions of [[numbers station]]s.&lt;br /&gt;
&lt;br /&gt;
=== Parity bits ===&lt;br /&gt;
&lt;br /&gt;
A ''parity bit'' is a bit that is added to a group of source bits to ensure that the number of set bits (i.e., bits with value 1) in the outcome is even or odd. It is a very simple scheme that can be used to detect single or any other odd number (i.e., three, five, etc.) of errors in the output. An even number of flipped bits will make the parity bit appear correct even though the data is erroneous.&lt;br /&gt;
&lt;br /&gt;
Extensions and variations on the parity bit mechanism are [[horizontal redundancy check]]s, [[vertical redundancy check]]s, and &amp;quot;double,&amp;quot; &amp;quot;dual,&amp;quot; or &amp;quot;diagonal&amp;quot; parity (used in [[Non-standard RAID levels#RAID-DP|RAID-DP]]).&lt;br /&gt;
&lt;br /&gt;
=== Checksums ===&lt;br /&gt;
&lt;br /&gt;
A ''checksum'' of a message is a [[modular arithmetic]] sum of message code words of a fixed word length (e.g., byte values). The sum may be negated by means of a [[Ones' complement|ones'-complement]] operation prior to transmission to detect errors resulting in all-zero messages.&lt;br /&gt;
&lt;br /&gt;
Checksum schemes include [[parity bit]]s, [[check digit]]s, and [[longitudinal redundancy check]]s. Some checksum schemes, such as the [[Damm algorithm]], the [[Luhn algorithm]], and the [[Verhoeff algorithm]], are specifically designed to detect errors commonly introduced by humans in writing down or remembering identification numbers.&lt;br /&gt;
&lt;br /&gt;
=== Cyclic redundancy checks (CRCs) ===&lt;br /&gt;
&lt;br /&gt;
A ''cyclic redundancy check (CRC)'' is a non-secure [[hash function]] designed to detect accidental changes to digital data in computer networks; as a result, it is not suitable for detecting maliciously introduced errors. It is characterized by specification of what is called a ''generator polynomial'', which is used as the [[divisor]] in a [[polynomial long division]] over a [[finite field]], taking the input data as the [[dividend]], such that the [[remainder]] becomes the result.&lt;br /&gt;
&lt;br /&gt;
A cyclic code has favorable properties that make it well suited for detecting [[burst error]]s. CRCs are particularly easy to implement in hardware, and are therefore commonly used in digital [[computer network|networks]] and storage devices such as [[hard disk drives]].&lt;br /&gt;
&lt;br /&gt;
Even parity is a special case of a cyclic redundancy check, where the single-bit CRC is generated by the divisor ''x'' + 1.&lt;br /&gt;
&lt;br /&gt;
=== Cryptographic hash functions ===&lt;br /&gt;
&lt;br /&gt;
The output of a ''cryptographic hash function'', also known as a ''message digest'', can provide strong assurances about [[data integrity]], whether changes of the data are accidental (e.g., due to transmission errors) or maliciously introduced. Any modification to the data will likely be detected through a mismatching hash value. Furthermore, given some hash value, it is infeasible to find some input data (other than the one given) that will yield the same hash value. If an attacker can change not only the message but also the hash value, then a ''keyed hash'' or [[message authentication code]] (MAC) can be used for additional security. Without knowing the key, it is infeasible for the attacker to calculate the correct keyed hash value for a modified message.&lt;br /&gt;
&lt;br /&gt;
=== Error-correcting codes ===&lt;br /&gt;
&lt;br /&gt;
Any error-correcting code can be used for error detection. A code with ''minimum [[Hamming distance]]'', ''d'', can detect up to ''d'' − 1 errors in a code word. Using minimum-distance-based error-correcting codes for error detection can be suitable if a strict limit on the minimum number of errors to be detected is desired.&lt;br /&gt;
&lt;br /&gt;
Codes with minimum Hamming distance ''d'' = 2 are degenerate cases of error-correcting codes, and can be used to detect single errors. The [[parity bit]] is an example of a single-error-detecting code.&lt;br /&gt;
&lt;br /&gt;
== Error correction ==&lt;br /&gt;
&lt;br /&gt;
=== Automatic repeat request (ARQ) ===&lt;br /&gt;
&lt;br /&gt;
[[Automatic repeat request|Automatic Repeat reQuest]] (ARQ) is an error control method for data transmission that makes use of error-detection codes, acknowledgment and/or negative acknowledgment messages, and [[Timeout (computing)|timeouts]] to achieve reliable data transmission. An ''acknowledgment'' is a message sent by the receiver to indicate that it has correctly received a [[Frame (networking)|data frame]].&lt;br /&gt;
&lt;br /&gt;
Usually, when the transmitter does not receive the acknowledgment before the timeout occurs (i.e., within a reasonable amount of time after sending the data frame), it retransmits the frame until it is either correctly received or the error persists beyond a predetermined number of retransmissions.&lt;br /&gt;
&lt;br /&gt;
Three types of ARQ protocols are [[Stop-and-wait ARQ]], [[Go-Back-N ARQ]], and [[Selective Repeat ARQ]].&lt;br /&gt;
&lt;br /&gt;
ARQ is appropriate if the communication channel has varying or unknown [[channel capacity|capacity]], such as is the case on the Internet. However, ARQ requires the availability of a [[Backward channel|back channel]], results in possibly increased [[Latency (engineering)|latency]] due to retransmissions, and requires the maintenance of buffers and timers for retransmissions, which in the case of [[network congestion]] can put a strain on the server and overall network capacity.&lt;br /&gt;
&lt;br /&gt;
For example, ARQ is used on shortwave radio data links in the form of [[ARQ-E]], or combined with multiplexing as [[ARQ-M]].&lt;br /&gt;
&lt;br /&gt;
=== Error-correcting code ===&lt;br /&gt;
An [[error-correcting code]] (ECC) or forward error correction (FEC) code is a process of adding [[redundancy (information theory)|redundant]] data, or ''parity data'', to a message, such that it can be recovered by a receiver even when a number of errors (up to the capability of the code being used) were introduced, either during the process of transmission, or on storage. Since the receiver does not have to ask the sender for retransmission of the data, a [[backchannel]] is not required in forward error correction, and it is therefore suitable for [[simplex communication]] such as [[broadcasting]]. Error-correcting codes are frequently used in [[OSI model|lower-layer]] communication, as well as for reliable storage in media such as [[Compact Disc|CDs]], [[DVD]]s, [[hard disk]]s, and [[random access memory|RAM]].&lt;br /&gt;
&lt;br /&gt;
Error-correcting codes are usually distinguished between [[convolutional code]]s and [[block code]]s:&lt;br /&gt;
* ''Convolutional codes'' are processed on a bit-by-bit basis. They are particularly suitable for implementation in hardware, and the [[Viterbi decoder]] allows [[maximum likelihood decoding|optimal decoding]].&lt;br /&gt;
* ''Block codes'' are processed on a [[Block (telecommunications)|block-by-block]] basis. Early examples of block codes are [[repetition code]]s, [[Hamming code]]s and [[multidimensional parity-check code]]s. They were followed by a number of efficient codes, [[Reed–Solomon code]]s being the most notable due to their current widespread use. [[Turbo code]]s and [[low-density parity-check code]]s (LDPC) are relatively new constructions that can provide almost [[:Category:Capacity-approaching codes|optimal efficiency]].&lt;br /&gt;
&lt;br /&gt;
[[Shannon's theorem]] is an important theorem in forward error correction, and describes the maximum [[information rate]] at which reliable communication is possible over a channel that has a certain error probability or [[signal-to-noise ratio]] (SNR). This strict upper limit is expressed in terms of the [[channel capacity]]. More specifically, the theorem says that there exist codes such that with increasing encoding length the probability of error on a [[channel model|discrete memoryless channel]] can be made arbitrarily small, provided that the [[code rate]] is smaller than the channel capacity. The code rate is defined as the fraction ''k/n'' of ''k'' source symbols and ''n'' encoded symbols.&lt;br /&gt;
&lt;br /&gt;
The actual maximum code rate allowed depends on the error-correcting code used, and may be lower. This is because Shannon's proof was only of existential nature, and did not show how to construct codes which are both optimal and have [[polynomial time|efficient]] encoding and decoding algorithms.&lt;br /&gt;
&lt;br /&gt;
=== Hybrid schemes ===&lt;br /&gt;
&lt;br /&gt;
[[Hybrid ARQ]] is a combination of ARQ and forward error correction. There are two basic approaches:&lt;br /&gt;
&lt;br /&gt;
=== Internet ===&lt;br /&gt;
In a typical [[TCP/IP]] stack, error control is performed at multiple levels:&lt;br /&gt;
* Each [[Ethernet]] [[Data frame|frame]] carries a [[Cyclic redundancy check|CRC-32]] [[checksum]]. Frames received with incorrect checksums are discarded by the receiver hardware.&lt;br /&gt;
* The [[IPv4]] header contains a checksum protecting the contents of the header. [[Packet (information technology)|Packets]] with mismatching checksums are dropped within the network or at the receiver.&lt;br /&gt;
* The checksum was omitted from the [[IPv6]] header in order to minimize processing costs in [[network routing]] and because current [[link layer]] technology is assumed to provide sufficient error detection (see also RFC 3819).&lt;br /&gt;
* [[User Datagram Protocol|UDP]] has an optional checksum covering the payload and addressing information from the UDP and IP headers. Packets with incorrect checksums are discarded by the [[operating system]] [[network stack]]. The checksum is optional under IPv4, only, because the Data-Link layer checksum may already provide the desired level of error protection.&lt;br /&gt;
* [[Transmission Control Protocol|TCP]] provides a checksum for protecting the payload and addressing information from the TCP and IP headers. Packets with incorrect checksums are discarded within the network stack, and eventually get retransmitted using ARQ, either explicitly (such as through [[triple-ack]]) or implicitly due to a [[timeout (computing)|timeout]].&lt;br /&gt;
&lt;br /&gt;
=== Deep-space telecommunications ===&lt;br /&gt;
Development of error-correction codes was tightly coupled with the history of deep-space missions due to the extreme dilution of signal power over interplanetary distances, and the limited power availability aboard space probes. Whereas early missions sent their data uncoded, starting from 1968 digital error correction was implemented in the form of (sub-optimally decoded) [[convolutional code]]s and [[Reed–Muller code]]s. The Reed–Muller code was well suited to the noise the spacecraft was subject to (approximately matching a [[Gaussian function|bell curve]]), and was implemented at the Mariner spacecraft for missions between 1969 and 1977.&lt;br /&gt;
&lt;br /&gt;
The [[Voyager 1]] and [[Voyager 2]] missions, which started in 1977, were designed to deliver color imaging amongst scientific information of [[Jupiter]] and [[Saturn]]. This resulted in increased coding requirements, and thus the spacecraft were supported by (optimally [[Viterbi decoder|Viterbi-decoded]]) convolutional codes that could be [[concatenated code|concatenated]] with an outer [[Binary Golay code|Golay (24,12,8) code]].&lt;br /&gt;
&lt;br /&gt;
The Voyager 2 craft additionally supported an implementation of a [[Reed–Solomon code]]: the concatenated Reed–Solomon–Viterbi (RSV) code allowed for very powerful error correction, and enabled the spacecraft's extended journey to [[Uranus]] and [[Neptune]]. Both craft use V2 RSV coding due to ECC system upgrades after 1989.&lt;br /&gt;
&lt;br /&gt;
The [[CCSDS]] currently recommends usage of error correction codes with performance similar to the Voyager 2 RSV code as a minimum. Concatenated codes are increasingly falling out of favor with space missions, and are replaced by more powerful codes such as [[Turbo code]]s or [[LDPC code]]s.&lt;br /&gt;
&lt;br /&gt;
The different kinds of deep space and orbital missions that are conducted suggest that trying to find a &amp;quot;one size fits all&amp;quot; error correction system will be an ongoing problem for some time to come. For missions close to Earth the nature of the [[Channel (communications)|channel]] [[Noise (electronics)|noise]] is different from that which a spacecraft on an interplanetary mission experiences. Additionally, as a spacecraft increases its distance from Earth, the problem of correcting for noise gets larger.&lt;br /&gt;
&lt;br /&gt;
=== Satellite broadcasting (DVB) ===&lt;br /&gt;
The demand for satellite [[transponder]] bandwidth continues to grow, fueled by the desire to deliver television (including new channels and [[High Definition TV]]) and IP data. Transponder availability and bandwidth constraints have limited this growth, because transponder capacity is determined by the selected [[modulation]] scheme and [[Forward error correction]] (FEC) rate.&lt;br /&gt;
&lt;br /&gt;
Overview&lt;br /&gt;
* [[QPSK]] coupled with traditional Reed Solomon and Viterbi codes have been used for nearly 20 years for the delivery of digital satellite TV.&lt;br /&gt;
* Higher order modulation schemes such as [[8PSK]], [[Quadrature amplitude modulation|16QAM]] and [[32QAM]] have enabled the satellite industry to increase transponder efficiency by several orders of magnitude.&lt;br /&gt;
* This increase in the information rate in a transponder comes at the expense of an increase in the carrier power to meet the threshold requirement for existing antennas.&lt;br /&gt;
* Tests conducted using the latest chipsets demonstrate that the performance achieved by using Turbo Codes may be even lower than the 0.8 [[Decibel|dB]] figure assumed in early designs.&lt;br /&gt;
&lt;br /&gt;
=== Data storage ===&lt;br /&gt;
&lt;br /&gt;
Error detection and correction codes are often used to improve the reliability of data storage media. A &amp;quot;parity track&amp;quot; was present on the first [[magnetic tape data storage]] in 1951. The &amp;quot;Optimal Rectangular Code&amp;quot; used in [[group coded recording]] tapes not only detects but also corrects single-bit errors. Some [[file format]]s, particularly [[archive formats]], include a checksum (most often [[CRC32]]) to detect corruption and truncation and can employ redundancy and/or [[parity file]]s to recover portions of corrupted data. [[Cross-interleaved Reed–Solomon coding|Reed Solomon codes]] are used in [[compact disc]]s to correct errors caused by scratches.&lt;br /&gt;
&lt;br /&gt;
Modern hard drives use CRC codes to detect and Reed–Solomon codes to correct minor errors in sector reads, and to recover data from sectors that have &amp;quot;gone bad&amp;quot; and store that data in the spare sectors. [[RAID]] systems use a variety of error correction techniques to correct errors when a hard drive completely fails. Filesystems such as [[ZFS]] or [[Btrfs]], as well as some [[RAID]] implementations, support [[data scrubbing]] and resilvering, which allows bad blocks to be detected and (hopefully) recovered before they are used. The recovered data may be re-written to exactly the same physical location, to spare blocks elsewhere on the same piece of hardware, or to replacement hardware.&lt;br /&gt;
&lt;br /&gt;
=== Error-correcting memory ===&lt;br /&gt;
&lt;br /&gt;
[[Dynamic random access memory|DRAM]] memory may provide increased protection against [[soft error]]s by relying on error correcting codes. Such [[Dynamic random access memory#Errors and error correction|error-correcting memory]], known as ''ECC'' or ''EDAC-protected'' memory, is particularly desirable for high fault-tolerant applications, such as servers, as well as deep-space applications due to increased [[cosmic ray|radiation]].&lt;br /&gt;
&lt;br /&gt;
Error-correcting memory controllers traditionally use [[Hamming code]]s, although some use [[triple modular redundancy]].&lt;br /&gt;
&lt;br /&gt;
[[Forward error correction#Interleaving|Interleaving]] allows distributing the effect of a single cosmic ray potentially upsetting multiple physically neighboring bits across multiple words by associating neighboring bits to different words. As long as a [[single event upset]] (SEU) does not exceed the error threshold (e.g., a single error) in any particular word between accesses, it can be corrected (e.g., by a single-bit error correcting code), and the illusion of an error-free memory system may be maintained.&lt;br /&gt;
&lt;br /&gt;
In addition to hardware providing features required for ECC memory to operate, [[operating system]]s usually contain related reporting facilities that are used to provide notifications when soft errors are transparently recovered. An increasing rate of soft errors might indicate that a [[DIMM]] module needs replacing, and such feedback information would not be easily available without the related reporting capabilities. An example is the [[Linux kernel]]'s ''EDAC'' subsystem (previously known as ''bluesmoke''), which collects the data from error-checking-enabled components inside a computer system; beside collecting and reporting back the events related to ECC memory, it also supports other checksumming errors, including those detected on the [[Conventional PCI|PCI bus]].&lt;br /&gt;
&lt;br /&gt;
A few systems also support [[memory scrubbing]].&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Berger code]]&lt;br /&gt;
* [[Burst error-correcting code]]&lt;br /&gt;
* [[Link adaptation]]&lt;br /&gt;
* [[List of algorithms#Error detection and correction|List of algorithms for error detection and correction]]&lt;br /&gt;
* [[Forward error correction#List of error-correcting codes|List of error-correcting codes]]&lt;br /&gt;
* [[List of hash functions]]&lt;br /&gt;
* [[Reliability (computer networking)]]&lt;br /&gt;
&lt;br /&gt;
==Source==&lt;br /&gt;
&lt;br /&gt;
[http://wikipedia.org/ http://wikipedia.org/]&lt;br /&gt;
[[Category:Error-correcting codes]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
</feed>