2

Associative laws: $\begin{align}(p\lor q)\lor r&\equiv p\lor(q\lor r)\\(p\land q)\land r&\equiv p\land(q\land r)\end{align}$

Just curious is $(r\land p)\land q$ also the same as $(p\land q)\land r$? Like are there $3$ options here because I'm only seeing two options.

J.G.
  • 115,835

2 Answers2

1

The identity $(r\land p)\land q = (p\land q)\land r$ holds if $\land$ is commutative and associative, but it may fail if $\land$ is commutative but not associative, as in the example below: $$ \begin{array}{c|rrr|} \land&p&q&r \\ \hline p&p&r&q \\ q&r&q&p \\ r&q&p&r \\ \hline \end{array} $$ In this example, $(r\land p)\land q = q \land q = q$ but $(p\land q)\land r = r \land r = r$.

J.-E. Pin
  • 40,163
0

That is true if and only if it is conmutative.

Conmutation for operation ∨: $a ∨ b=b ∨ a$