Properties of Disjunction
Learn about the basic properties of disjunction.
We'll cover the following
Properties
Just like arithmetic operations satisfy specific properties, logical operations like disjunction also satisfy certain properties. Here, we will discuss the most fundamental properties of disjunction.
Associativity
Disjunction is associative. This means:
A formal proof of associativity of disjunction can be given by making a truth table. However, it is easier and more intuitive to argue that both, and , are true if and only if at least one of the three boolean variables is true. Formally, the following truth table shows that disjunction is associative. This is established because the last two columns are identical.
T | T | T | T | T | T | T |
T | T | F | T | T | T | T |
T | F | T | T | T | T | T |
T | F | F | T | F | T | T |
F | T | T | T | T | T | T |
F | T | F | T | T | T | T |
F | F | T | F | T | T | T |
F | F | F | F | F | F | F |
Commutativity
The disjunction operator is also commutative. This means taking disjunction of with is the same as taking disjunction of with ; that is,
Given propositions, we can take their disjunction and construct a new proposition as follows:
A convenient way to represent a disjunction of many variables is the iterative notation. In this notation, the above disjunction is written as:
With commutativity and associativity in hand, we can arrange these propositions on the right-hand side of the equation above in any of possible ways. Furthermore, we can parenthesize the conjunction in many possible ways and the resulting proposition will remain equivalent to . The proposition will only be true if at least one of the propositions, , , …, , is true . If all the propositions are false then will be false.
Quiz
Test your understanding of the properties of disjunction.
(Select all that apply.) What are the properties of disjunction?
Disjunction is commutative.
Disjunction is not commutative.
Disjunction is associative.
Disjunction is not associative.