Here is a brainteaser!

Let us say we have 64 bytes, each byte is eight bits plus one parity bit

Let us say there is a further LRC check byte (formed by bit wise XOR ing all 64 bytes)

So we can visualise this as a 8+1 by 64*1 grid

If one bit is damaged, the parity checks will flag it: one row will fail the parity check, and also one column.

So it will be trivial to locate the offending bit and reverse it.

However, four damaged bits in a square arrangement will fool the parity checking: as each offending row and column will contain 2 wronguns, hence give correct parity reading.

But this is a very unlikely scenario.

My question is: how would I go about repairing a dataset in this way? how much repairing is possible?

My gut feeling is there must be some sensible way to repair a slightly damaged data set...

link|improve this question

56% accept rate
feedback

1 Answer

I assume you meant 8+1 by 64+1 grid.

Assume one of the non-parity bits is damaged. The parity bit on the data byte will flag the byte. The parity on all the bytes will flag the column(bit) that was damaged. All good.

Assume one of the parity bits of the "ordinary" data bytes is damaged. The last bit of the extra parity byte would flag it, no?

Assume one of the parity bits of the parity byte is damaged. The last bit of the extra parity byte would flag it, no?

So how is the value of that bit defined?

link|improve this answer
You seem to put a lot of thought into your answers and make an effort to be thorough. I (and many SO users) appreciate that a lot! However, please note that most people asking a question are looking for a specific answer to a specific question, and not merely a general (however thorough) discussion of the topic. You don't seem to have actually addressed the question here. – Andrew Barber Dec 2 '11 at 10:31
I AM addressing the specific problem here. He was asking about this specific matrix being protected by parities on both rows and columns. On its face, that might work for errors involving up to one bit (since the parities would flag BOTH the row AND column where the error occured). I was pointing out that errors can also affect the parity data itself, which has insufficient protection so that a single bit error in the parity data could NOT be located. – chrono Dec 2 '11 at 14:25
I think the down vote is wrong... while not answering the question, this clearly elucidates a pertinent issue. such ' answers ' should be cherished as they increase the question's value as a resource. I guess it could have been put as a comment... – P i Dec 2 '11 at 21:10
@Pi if it doesn't answer the question, as you say it doesn't, then it certainly is a candidate for down voting. It is interesting... but as you note, it really should be a comment, if anything at all. – Andrew Barber Dec 2 '11 at 21:16
feedback

Your Answer

 
or
required, but never shown

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