▲ | Straw a day ago | ||||||||||||||||||||||
One can generalize this to k missing numbers the same way as we typically do for the addition case by using finite fields: XOR is equivalent to addition over the finite field F_2^m. So, in this field, we're calculating the sum. If we have two numbers missing, we calculate the sum and sum of squares, so we know: x + y x^2 + y^2 From which we can solve for x and y. (Note all the multiplications are Galois Field multiplications, not integer!) Similarly for k numbers we calculate sums of higher powers and get a higher order polynomial equation that gives our answer. Of course, the same solution works over the integers and I'd imagine modular arithmetic as well (I haven't checked though). | |||||||||||||||||||||||
▲ | less_less a day ago | parent | next [-] | ||||||||||||||||||||||
This will depend on the field, and for F_2^m you want odd powers: sum(x), sum(x^3), sum(x^5) etc. Using sum(x^2) won't help because squaring over F_2^m is a field homomorphism, meaning that sum(x^2) = sum(x)^2. This is also how BCH error-correction codes work (see https://en.wikipedia.org/wiki/BCH_code): a valid BCH codeword has sum(x^i where bit x is set in the codeword) = 0 for t odd powers i=1,3,5, ... Then if some bits get flipped, you will get a "syndrome" s_i := sum(x^i where bit x was flipped) for those odd powers. Solving from the syndrome to get the indices of the flipped bits is the same problem as here. The general decoding algorithm is a bit involved, as you can see in the Wikipedia article, but it's not horribly difficult:
You can of course use a different error-correcting code if you prefer (e.g. binary Goppa codes).Edit: bullets are hard. Further edit just to note: the "^" in the above text refers to powers over the finite field, not the xor operator. | |||||||||||||||||||||||
| |||||||||||||||||||||||
▲ | noman-land a day ago | parent | prev [-] | ||||||||||||||||||||||
Can you explain a bit about how and why the higher powers work? | |||||||||||||||||||||||
|