Suppose that $Z = X \vee Y$, where $X$, $Y$ and $Z$ are 96-bit binary numbers. If I'm given the values of $Z$ and $Y$, is it possible to work out what $X$ is?
I know this is possible with XOR but can it be done with OR?
Suppose that $Z = X \vee Y$, where $X$, $Y$ and $Z$ are 96-bit binary numbers. If I'm given the values of $Z$ and $Y$, is it possible to work out what $X$ is?
I know this is possible with XOR but can it be done with OR?
It is easy to find out that there can be more than one value, used as $X$, to satisfy $Z = X \vee Y$. When a specific bit of $Y$ is $1$, there are two possibilities for such bit in $X$, i.e., $0$ or $1$.
Let's make a simple example with a 2-bit number:
$Y$ = $10$ and $Z$ = $11$
The possible values of $X$ are:
because:
In short, you don't have the certainty that the end result of the reverse operation of $\vee$ will be a unique result.
Y= 011011000101001010010101111010011101010111010001011000010101100010101000000000111100000000001010
Is it possible to get X value which is equal to : 010110001000101000010010101111011111101010111010001011000010101100010101000000000110011010100100
From Z and Y ??
– SHdotCom Oct 19 '15 at 08:45