如果我们知道另一个输入和最终结果,从或门(按位或)的输出返回输入(比如 A)的最短逻辑是什么?

What is the shortest logic to get back an input (say A) from an output of an OR gate (bitwise OR), if we know another input and the final result?

假设我知道输入 B 和输出 A+B (A OR B)我可以应用什么最短的逻辑来获得其他输入 A?

你不一定能得到所有位

或门的逻辑 table 是

A  B  A+B
0  0   0
0  1   1
1  0   1
1  1   1

所以如果你知道A+B是1,B是1,你就无法知道A的值是多少