(no title)
myaccount80 | 6 years ago
The same happens if you apply the standard AND operator to two bits because the output is only one bit, therefore it is impossible to figure out the two input bits. To have a reversible AND operator you can define it like this: f(x1, x2, b) = (x1, x2, b XOR (x1 AND x2)). E.g: f(1,1,0) = (1,1,1). From this output you can get back to the input. This way you can implement a NOT gate as well, and all others gates. At the end you can implement addition using bits and your summation becomes reversible :) You can see that with this definition we are not ereasing any information, hence it becomes reversible.
fizx|6 years ago
https://en.wikipedia.org/wiki/Ancilla_bit
gigatexal|6 years ago
After reading: “oh my god it’s full of stars!”
codernyc16|6 years ago
setr|6 years ago
Zenst|6 years ago
LifeLiverTransp|6 years ago
[deleted]