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...