I was working my way through some Propositional Logic and had the following doubt :
Why is this true :
((p $\Rightarrow$ r) $\land$ (q $\Rightarrow$ r)) $\equiv$ ((p $\lor$ q) $\Rightarrow$ r)
Please provide an intuitive explanation and not one that uses a truth table or logic identities to simplify the expression . I have already done both of them :)
From $\;((p\implies r) \wedge (q\implies r))\;$, we know if $p$ is true then $r$ is true, and if $q$ is true then $r$ is true.
This means that if either $p$ or $q$ are true then $r$ is true. (If one is false and the other true, we still know $r$ must be true; only if both are false do we not know what $r$ is.)
Which is $\;(p\vee q) \implies r\;$ so they are equivalent statements.
$$\therefore ((p\implies r) \wedge (q\implies r)) \equiv ((p\vee q) \implies r)$$
Alternatively, since $\;x\implies y\;$ is equivalent to $\;\neg x \impliedby \neg y\;$ then we can substitute a contraposition for each implication.
Thus $\;((p\implies r) \wedge (q\implies r))\;$ is equivalent to $\;((\neg p\impliedby \neg r) \wedge (\neg q\impliedby \neg r))\;$, and hence we know if $r$ is false then $p$ is false, and if $r$ is false then $q$ is false.
To simplify, this means that if $r$ is false then both $p$ and $q$ are false.
Which is $\;(\neg p\wedge \neg q) \impliedby \neg r\;$, and this is equivalent to: $\;(p\vee q) \implies r\;$.
$$\because ((\neg p\impliedby \neg r) \wedge (\neg q\impliedby \neg r)) \equiv ((\neg p\wedge \neg q) \impliedby \neg r)$$
$$\therefore ((p\implies r) \wedge (q\implies r)) \equiv ((p\vee q) \implies r)$$
Gregor de Cillia put this rather more succinctly in the comments.