As part of a proof I have $\vdash p \to (q \to r)$. Can I from this infer $\vdash (p \wedge q) \to r$? It "feels" correct, but I can't seem to find a proof.
Thanks for any help.
As part of a proof I have $\vdash p \to (q \to r)$. Can I from this infer $\vdash (p \wedge q) \to r$? It "feels" correct, but I can't seem to find a proof.
Thanks for any help.
$\def\fitch#1#2{~\begin{array}{|l}#1\\\hline #2\end{array}}$
$$\fitch{p\to (q\to r)}{\fitch{p\wedge q}{q\\p\\q\to r\\r}\\(p\wedge q)\to r}\qquad\fitch{(p\wedge q)\to r}{\fitch{p}{\fitch{q}{p\wedge q\\ r}\\q\to r}\\p\to (q\to r)}$$
You can.
By applying appropriate theorems to convert the LHS to RHS:
In this case:
$p→(q→r)$ is the LHS
$p→(q→r)$ is the RHS
Formulas Required:
$a→b ≡ ¬a∨b$
$¬(a∧b) ≡ ¬a∨¬b$
Steps:
$p→(q→r) ≡ p→(¬q∨r) ≡ ¬p∨(¬q∨r) ≡ (¬p∨¬q)∨r ≡ ¬(p∧q)∨r ≡ (p∧q)→r$