I can't find information on accuracy of different error detection techniques. Say, if I want to be able to correct 1, 2 and 3 bit failures in 32 bit word than I can use modified Hamming code with 7 redundant bits - but what about another coding techniques - can't find any data on them. For example, what CRC polynomials will be able to detect 1..3 bit failures and how many redundant bits that will require? what about other techniques?

link|improve this question

65% accept rate
feedback

1 Answer

Each n-bit CRC will detect every n-bit burst error.

Otherwise, the n-bit CRC will detect an arbitrary error with a probability of 1 − 2−n.

For example, CRC-32 will detect every error where there are no more than 30 bits between the first flipped bit and the last flipped bit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.