Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

#1: Initial revision by user avatar wizzwizz4‭ · 2026-02-21T23:53:56Z (7 months ago)
Exclusive or ("one or the other, and not both") is the same as inclusive or ("one or the other, or both") when the operands are not both true.

Consider the truth tables:

| $A$ | $B$ | $A \oplus B$ | $A \lor B$ | $A \oplus B = A \lor B$ |
|:---:|:---:|:------------:|:----------:|:-----------------------:|
| 0 | 0 | 0 | 0 | 1 |
| 0 | 1 | 1 | 1 | 1 |
| 1 | 0 | 1 | 1 | 1 |
| 1 | 1 | 1 | 0 | 0 |

From this, we see that $A \oplus B = A \lor B \iff ¬(A \land B)$. We can test this condition against your two examples:

  * \begin{align}¬(X \land ¬X) &\iff ¬0 \\&\iff 1\end{align}
  * \begin{align}¬((A \land ¬B) \land (¬A \land C)) &\iff ¬(A \land ¬B \land ¬A \land C) \\&\iff ¬((A \land ¬A) \land ¬B \land C) \\&\iff ¬(0 \land ¬B \land C) \\&\iff ¬0 \\&\iff 1\end{align}

Therefore, the simplification is valid in both cases.

As observed [by Olin Lathrop](#answer-295343), we can perform the same calculation with other operations, to find the conditions under which they can be simplified to each other. This is not a particularly _sophisticated_ trick, but it can be useful if you wish to avoid exhaustive case analysis.