If $p \to q$ and if $r \to s$, can we say that if $p \land r$ then $q \land s$?
$p,q,r,s$ are logical statements. How can I prove it?
If $p \to q$ and if $r \to s$, can we say that if $p \land r$ then $q \land s$?
$p,q,r,s$ are logical statements. How can I prove it?
On
In the worst case scenario, you unfortunately have $2^n$ cases to consider, no matter what method you use. But, here is a method that, on average, will be quicker than the full truth table method: the short truth table method.
In the short truth table method, you simply try and consider what it would take for the implying statements to be true, and the implied statement to be false. Put a different way: you try and come up with a counterexample to the argument.
In this case, let's first focus on the implied statement. For $(p \wedge r) \rightarrow (q \wedge s)$ to be false, $p \wedge r$ needs to be true, and $q \wedge s$ false. So, $p$ and $r$ are both true, and $q$ and $s$ are not both true.
Now let's focus on the implying statement $(p \rightarrow q) \wedge (r \rightarrow s)$. For this to be true, you need $p \rightarrow q$ to be true as well as $r \rightarrow s$. Since we already knew that $p$ had to be true in order to get our counterexample, that means that $q$ has to be true as well given the first conditional, and given that $r$ needed to be true, the second conditional forces $s$ to be true as well.
But wait! Now we have that $q$ and $s$ are both true, and yet earlier we saw they couldn't both be true. So, we have reached a contradiction! From what? From the assumption that we could make the implying statement true and the implied statement false (or: from the asumption that there is a counterexample to the argument). So: there is no counterexample possible. So, the argument is indeed valid.
So, the whole idea behind the short truth-table method is that you immediately try to generate the kind of row that you would nomally be looking for in a full truth table to obtain you answer, and often you can do this much more quickly than doing the whiole truth table.
Unfortunately, sometimes you get stuck when using this method, and nothing gets forced. So then you will have to consider multiple ways to make certain statements true or false. And that is exactly what the tree method does ... But that is for another day.
On
The premises are
$$p \to q \qquad \qquad \qquad r \to s$$
Assume $p \land r$. Use conjunction elimination twice, then use modus ponens twice, and then use conjunction introduction once. Lastly, using implication introduction, we conclude
$$p \land r \to q \land s$$
We only need to check when the $p$ and $r$ is true, as otherwise the implication is trivially true. When $p$ and $r$ is true that means that both $p$ and $r$ are true (separately). But using the condition we have that this implies that both $q$ and $s$ are true (separately). So we have that $q$ and $s$ is true. Therefore the implication $p \text{ and } r \implies q \text{ and } s$ is true.