Error Detection Techniques
Error Detection Techniques
and Correction
Types of Errors
Detection
Correction
Types of Errors
Single-bit error
Multiple-bit error
Burst error
Error detection
Error detection means to decide whether the
received data is correct or not without having a
copy of the original message.
Error detection uses the concept of redundancy,
which means adding extra bits for detecting
errors at the destination.
Redundancy
Performance
It can detect single bit error
It can detect burst errors only if the total
number of errors is odd.
Performance
LRC increases the likelihood of detecting
burst errors.
If two bits in one data units are damaged
and two bits in exactly the same positions in
another data unit are also damaged, the
LRC checker will not detect an error.
Binary Division
C(x) =
M(x) =
1101
k + 1 bit check
sequence c,
equivalent to a
degree-k
polynomial
10011010000
1101
Message plus k
zeros
1001
1101
1000
1101
Result:
1011
1101
1100
1101
Remainder
m mod c
1000
1101
101
Transmit message
followed by
remainder:
10011010101
P(x) = x10 x7 x6 x4 x2 1
Received Message
1101
10011010101
1101
k + 1 bit check
sequence c,
equivalent to a
degree-k
polynomial
Received
message, no
errors
1001
1101
1000
1101
Result:
1011
1101
1100
1101
Remainder
m mod c
= 10011010101
1101
1101
0
C(x) =
x3 x2 1
P(x) = x10 x7 x5 x4 x2 1
Received Message
1101
k + 1 bit check
sequence c,
equivalent to a
degree-k
polynomial
10010110101
1101
1000
1101
m mod c
Received message
Two bit errors
1011
1101
Result:
1101
1101
0101
Remainder
= 1101
Generator
= 10010110101
Polynomial
Standard Polynomials
Checksum
At the sender
The unit is divided into k sections, each of n
bits.
All sections are added together using ones
complement to get the sum.
The sum is complemented and becomes the
checksum.
The checksum is sent with the data
At the receiver
The unit is divided into k sections, each of n
bits.
All sections are added together using ones
complement to get the sum.
The sum is complemented.
If the result is zero, the data are accepted:
otherwise, they are rejected.
Performance
The checksum detects all errors involving an
odd number of bits.
It detects most errors involving an even number
of bits.
If one or more bits of a segment are damaged
and the corresponding bit or bits of opposite
value in a second segment are also damaged, the
sums of those columns will not change and the
receiver will not detect a problem.