I understand P ∧ Q, being that both must be equivalent, ie True & True, or False and False.
I understand P --> Q implies that if P is True we know what Q is and if Q is true then the result is True, if P is True and Q is False then the result is False, if P is False we do not know what Q is and assume it to be true.
So for (P ∧ Q) --> R, does this mean I do P && Q first and use those results as P as though I was doing P --> Q and R being Q.
I used a calculator online and it showed me this as the answer but I didn't understand it:
p q r ((p ∧ q) → r)
--------------------------
F F F T
F F T T
F T F T
F T T T
T F F T
T F T T
T T F F
T T T T
So looking at the first row, p=F and q=F therefore p∧q is True?, r is False therefore the last column should be False no? Why is it True?
Or is the result true only when both are in fact True, not just equivalent? F ∧ F = F?
Some overarching ideas:
Let $S$ represent the truth value for $P \land Q$ under this premise then. Then for the statement $S \implies R$ we get the usual truth table:
$$\begin{array}{cc|c} S & R & S \implies R \\ \hline T & T & T \\ T & F & F \\ F & T & T \\ F & F & T \end{array}$$
What's the truth table for $S$, i.e. $P \land Q$?
$$\begin{array}{cc|c} P & Q & P \land Q \\ \hline T & T & T \\ T & F & F \\ F & T & F \\ F & F & F \end{array}$$
Combining the two, then,
$$\begin{array}{cc|c|c|c} P & Q & S = P \land Q & R & S = P \land Q \implies R \\ \hline T & T & T & T & T \\ F & T & F & T & T \\ T & F & F & T & T \\ F & F & F & T & T \\ T & T & T & F & F \\ F & T & F & F & T \\ T & F & F & F & T \\ F & F & F & F & T \end{array}$$
In summary:
Whenever the precedent $P \land Q$ is true but $R$ is false is the only case when the implication $P \land Q \implies R$ is false, because of how implication works from a logical perspective (it's reliant only on the truth of the precedent). In all other cases, we claim the implication to be true, since either the implication holds or the precedent is false and so has no bearing on the implication.
From there, we consider the circumstances under which the precedent $P \land Q$ is false or true, consider its effects on the implication, and make our truth table from there.