Difference between revisions of "Exclusive or"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
(See also)
Line 28: Line 28:
 
* [[Logical value]]
 
* [[Logical value]]
 
* [[Material conditional]]
 
* [[Material conditional]]
* [[Operation]]
+
* [[Operation (mathematics)]]
 
* [[Paradox of material implication]]
 
* [[Paradox of material implication]]
 
* [[Parity bit]]
 
* [[Parity bit]]

Revision as of 16:38, 15 November 2016

Exclusive or or exclusive disjunction is a logical operation that outputs true only when inputs differ (one is true, the other is false).

Description

It gains the name "exclusive or" because the meaning of "or" is ambiguous when both operands are true; the exclusive or operator excludes that case. This is sometimes thought of as "one or the other but not both". This could be written as "A or B, but not, A and B".

More generally, XOR is true only when an odd number of inputs are true. A chain of XORs—a XOR b XOR c XOR d (and so on)—is true whenever an odd number of the inputs are true and is false whenever an even number of inputs are true.

The negation of XOR is logical biconditional, which outputs true only when both inputs are the same.

See also

External links