|
|
|
|
|
by wongarsu
1453 days ago
|
|
To be fair, AND, OR and NOT are enough to compute any function, and you can make all the other operators out of a combination of those three. For example A XOR B is just (A OR B) AND (NOT (A AND B)). Knowing things beyond AND, OR or NOT is useful, but not strictly necessary. XOR has useful properties though: with random inputs you get TRUE 50% of the time, allowing you to chain it without trending to 0 or 1; also it's the opposite of bitwise equality. The others aren't that interesting if you aren't dealing with hardware, and their function is obvious if you know the naming convention. |
|