Properties of Disjunction

Learn about the basic properties of disjunction.

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:

(pq)rp(qr).\left(p \lor q\right) \lor r \equiv p \lor \left(q \lor r\right).

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, (pq)r( p \lor q) \lor r and p(qr)p \lor (q \lor r), 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.

Associativity
Associativity
pp qq rr pqp\lor q qrq\lor r (pq)r\left(p \lor q\right) \lor r p(qr)p \lor \left(q \lor r\right)
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 pp with qq is the same as taking disjunction of qq with pp; that is,

pqqp.p \lor q \equiv q \lor p.

Commutativity
Commutativity

Given nn propositions, p1,p2,...,pn,p_{1},p_{2},...,p_{n}, we can take their disjunction and construct a new proposition pp as follows:

pp1p2pn.p \equiv p_{1}\lor p_{2}\lor \cdots \lor p_{n} .

A convenient way to represent a disjunction of many variables is the iterative notation. In this notation, the above disjunction is written as:

pi=1npi.p \equiv \bigvee_{i=1}^n p_i.

Press + to interact
Iterative disjunction notation
Iterative disjunction notation

With commutativity and associativity in hand, we can arrange these nn propositions on the right-hand side of the equation above in any of n!n! possible ways. Furthermore, we can parenthesize the conjunction in many possible ways and the resulting proposition will remain equivalent to pp. The proposition pp will only be true if at least one of the nn propositions, p1p_{1}, p2p_{2}, …, pnp_{n}, is true . If all the nn propositions are false then pp will be false.

Quiz

Test your understanding of the properties of disjunction.

Q

(Select all that apply.) What are the properties of disjunction?

A)

Disjunction is commutative.

B)

Disjunction is not commutative.

C)

Disjunction is associative.

D)

Disjunction is not associative.