I am doing a software that grabs in the end a numeric string, that string encodes important data, and any error destroy the contents.

Worse: It is VERY prone for errors, because of how data is transmitted (and I can do nothing about it).

So I decided to add a verification digit of sorts... After some research, I have more questions than answers... So, someone can point me to a decent location to study more about that subject?

Also, someone know some popular algorithms that can even fix errors, or at least point where the errors are, so I can retry grabbing the data with error?

Also what I do, if the checksum data itself managed to be wrong in transmission?

link|improve this question

79% accept rate
What are constraints on the size? Is the data transcribed by hand? You can obviously trade space for reliability, for example an extremely naive error-correction scheme would be to simple re-transmit the code 100 times. A good start for study is en.wikipedia.org/wiki/Error_detection_and_correction – Dylan Tack Aug 15 '11 at 17:46
the code has to fit a SMS (so, 140 characters...) also the data errors are not human errors at all. – speeder Aug 15 '11 at 18:18
feedback

2 Answers

Basically for every N bits of your message, you have some check bits.

You can detect and correct errors in the check bits, based on the data, or errors in the data, based on check bits. Too many errors though, and it's just garbage. There may be a utility in your language of choice to already do this.

link|improve this answer
feedback

This can be of use: http://www.eccpage.com/

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.