The non-exclusive disjunction (alternative, adjunction) is a compound statement of the type "A or B (or both)"; it states that at least one of the two statements involved is true.
Notation

In Polish notation, the capital letter A is used for disjunction:
Aab
In the notation
of a conjunction of statements, the symbol
(Unicode: U+2228, ∨) stands for the non-exclusive disjunction as a propositional junction. It resembles the character
for the unification set, and is reminiscent of the letter "v" that begins the Latin word "vel", which stands for such a non-exclusive Or.
The truth table for the vel function (OR function of a gate) as a truth value function of the non-exclusive disjunction is thus:
|  |  |  |
| true | true | true |
| true | Incorrect | true |
| Incorrect | true | true |
| Incorrect | Incorrect | Incorrect |
A disjunction is a Boolean expression, it is associative and commutative.
It follows from what has been said:
- If A is false and if B is false, the disjunction is false; in every other case it is true.
- If the disjunction is false, then both A and B are false.
- If the disjunction is true, one of the following must be true:
- both disjoints are true
- A is false and B is true or
- A is true and B is false
Example
The statement "Tom helps paint or Anna helps paint" consists of the following parts:
- the partial statement/disjunct A: "Tom helps paint".
- the disjunctive "or", here not understood as exclusive
- the partial statement/disjunct B: "Anna helps paint".
Neither partial statement here excludes the other. The statement is false if neither Tom nor Anna help paint, true otherwise. In particular, it is also true if both Tom and Anna help paint.