Exclusive orFrom CryptoDox, The Online Encyclopedia on Cryptography and Information Security(Redirected from Exclusive-or)
Template:Redirect Template:For In logical operations, the exclusive disjunction, also called exclusive or, (symbolized XOR or EOR), is a type of logical disjunction on two operands that results in a value of "true" if and only if exactly one of the operands has a value of "true." [1] Put differently, exclusive disjunction is a logical operation on two logical values, typically the values of two propositions, that produces a value of true just in cases where exactly one of its operands is true.
Truth tableThe truth table of p XOR q (also written as p ⊕ q, or p ≠ q) is as follows:
Venn diagramThe Venn Diagram of "A xor B" (white part is true) Equivalencies, elimination, and introductionThe following equivalents can then be deduced, written with logical operators, in mathematical and engineering notation: Generalized or n-ary XOR is true when the number of 1-bits is odd. The exclusive disjunction The exclusive disjunction This representation of XOR may be found useful when constructing a circuit or network, because it has only one ¬ operation and small number of ∧ and ∨ operations. The proof of this identity is given below: It is sometimes useful to write p XOR q in the following way: This equivalence can be established by applying De Morgan's laws twice to the fourth line of the above proof. The exclusive or is also equivalent to the negation of a logical biconditional, by the rules of material implication (a material conditional is equivalent to a the disjunction of the negation of its antecedent and its consequence) and material equivalence. Relation to Modern AlgebraAlthough the operators ∧ (conjunction) and ∨ (disjunction) are very useful in logic systems, the latter fails a more generalizable structure in the following way:
However, the system using exclusive or ({T, F}, ∨) is an abelian group. The combination of operators ∧ and ∨ over elements {T, F} produce the well-known field (algebra) F2. This field can represent any logic obtainable with the system (∧, ∨) and has the added benefit of the arsenal of algebraic analysis tools for fields. Exclusive "or" in natural languageThe Oxford English Dictionary explains "either…or" as follows:
Following this kind of common-sense intuition about "or", it is sometimes argued that in many natural languages, English included, the word "or" has an "exclusive" sense. The exclusive disjunction of a pair of propositions, (p, q), is supposed to mean that p is true or q is true, but not both. For example, it is argued, the normal intention of a statement like "You may have coffee or you may have tea" is to stipulate that exactly one of the conditions can be true. Certainly under many circumstances a sentence like this example should be taken as forbidding the possibility of one's accepting both options. Even so, there is good reason to suppose that this sort of sentence is not disjunctive at all. If all we know about some disjunction is that it is true overall, we cannot be sure that either of its disjuncts is true. For example, if a woman has been told that her friend is either at the snack bar or on the tennis court, she cannot validly infer that he is on the tennis court. But if her waiter tells her that she may have coffee or she may have tea, she can validly infer that she may have tea. Nothing classically thought of as a disjunction has this property. This is so even given that she might reasonably take her waiter as having denied her the possibility of having both coffee and tea. There are also good general reasons to suppose that no word in any natural language could be adequately represented by the binary exclusive "or" of formal logic. First, n-ary exclusive "or" is true if and only if it has an odd number of true inputs. But it seems as though no word in any natural language that can conjoin a list of two or more options has this general property. Second, as pointed out by Barrett and Stenner in the 1971 article "The Myth of the Exclusive ‘Or’" (Mind, 80 (317), 116–121), no author has produced an example of an English or-sentence that appears to be false because both of its inputs are true. Certainly there are many or-sentences such as "The light bulb is either on or off" in which it is obvious that both disjuncts cannot be true. But it is not obvious that this is due to the nature of the word "or" rather than to particular facts about the world. Alternative symbolsThe symbol used for exclusive disjunction varies from one field of application to the next, and even depends on the properties being emphasized in a given context of discussion. In addition to the abbreviation "XOR", any of the following symbols may also be seen:
PropertiesThis section uses the following symbols: The following equations follow from logical axioms: Associativity and commutativityIn view of the isomorphism between addition modulo 2 and exclusive disjunction, it is clear that XOR is both an associative and a commutative operation. Thus parentheses may be omitted in successive operations and the order of terms makes no difference to the result. For example, we have the following equations: Other properties
Computer scienceImage:Xor-gate-en.svg Traditional symbolic representation of an XOR Logic Gate Bitwise operationMain article: Bitwise XOR
As noted above, since exclusive disjunction is identical to addition modulo 2, the bitwise exclusive disjunction of two n-bit strings is identical to the standard vector of addition in the vector space In computer science, exclusive disjunction has several uses:
In logical circuits, a simple adder can be made with a XOR gate to add the numbers, and a series of AND, OR and NOT gates to create the carry output. On some computer architectures, it is more efficient to store a zero in a register by xor-ing the register with itself (bits xor-ed with themselves are always zero) instead of loading and storing the value zero. In simple threshold activated neural networks, modelling the 'xor' function requires a second layer because 'xor' is not a linearly-separable function. Exclusive-or is sometimes used as a simple mixing function in cryptography, for example, with one-time pad or Feistel network systems. XOR is used in RAID 3–6 for creating parity information. For example, RAID can "back up" bytes10011100and 01101100from two (or more) hard drives by XORing ( 11110000) and writing to another drive. Under this method, if any one of the three hard drives are lost, the lost byte can be re-created by XORing bytes from the remaining drives. If the drive containing 01101100is lost, 10011100and 11110000can be XORed to recover the lost byte. XOR is also used to detect an overflow in the result of a signed binary arithmetic operation. If the leftmost retained bit of the result is not the same as the infinite number of digits to the left, then that means overflow occurred. XORing those two bits will give a "one" if there is an overflow. XOR can be used to swap two numeric variables in computers, using the XOR swap algorithm; however this is regarded as more of a curiosity and not encouraged in practice. In computer graphics, XOR-based drawing methods are often used to manage such items as bounding boxes and cursors on systems without alpha channels or overlay planes. See alsoTemplate:Col-begin Template:Col-break
Notes
|



can be expressed in terms of the conjunction (∧), the disjunction (∨), and the negation (¬) as follows:
).
.