Error Detection Methods: Dr. S.Meenatchi, SITE, VIT
Error Detection Methods: Dr. S.Meenatchi, SITE, VIT
• Thus, for the given CRC generator, the corresponding binary pattern is
11011011.
• Now, all the segments are added and the result is obtained as-
• 10011001 + 11100010 + 00100100 + 10000100 = 1000100011
• Since the result consists of 10 bits, so extra 2 bits are wrapped around.
• 00100011 + 10 = 00100101 (8 bits)
• Now, 1’s complement is taken which is 11011010.
• Thus, checksum value = 11011010 Dr. S.Meenatchi, SITE, VIT.
Example cont..
Step-02:
• The data along with the checksum value is transmitted to the receiver.
Step-03:
• At receiver side,
• The received data unit is divided into segments of 8 bits.
• All the segments along with the checksum value are added.
• Sum of all segments + Checksum value = 00100101 + 11011010 = 11111111
• Complemented value = 00000000
• Since the result is 0, receiver assumes no error occurred in the data and therefore
accepts it.
Dr. S.Meenatchi, SITE, VIT.