Using the laws of logic, prove:
p → (q ∧ r) ≡ (p → q) ∧ (p → r)
My attempt to prove this:
p → (q ∧ r)
Implication Law: ¬p ∨ (q ∧ r)
Distribution Law: (¬p ∨ q) ∧ (¬q ∨ r)
I am unsure how to correctly apply the laws of logic (without the use of Truth Tables) so that:
p → (q ∧ r) ≡ (p → q) ∧ (p → r)
You didn't apply the Distribution Law correctly.
You should go from:
$$\neg p \lor (q \land r)$$
to:
$$(\neg p \lor q) \land (\color{red}{\neg p} \lor r)$$
and from there you use Implication twice to get:
$$(p \rightarrow q) \land (p \rightarrow r)$$