异或乘法和算术运算的顺序

XOR multiplication and order of arithmetic operations

我有一个愚蠢的问题,我什至不好意思问。 由于我对数学知之甚少,我不知道应该搜索什么。

我正在处理以下等式:

[(a*x)^b]*c=d

其中 ^ 代表 XOR* 代表 乘法

如何隔离 x?

[(a*x)^b]*c=d
[(a*x)^b]=d/c
(a*x)^b^b=(d/c)^b  //double xor with b retrieves initial value
(a*x)=(d/c)^b
x = ((d/c)^b) / a

基于 xor 的属性,以下成立:

A xor A = 0
B xor 0 = B

另外,它是可交换的。剩下的就是简单的方程式求解数学。