$$ \newcommand{\given}{\mid} \renewcommand{\neg}{\mathbin{\sim}} \renewcommand{\wedge}{\mathbin{\&}} \newcommand{\p}{Pr} \newcommand{\degr}{^{\circ}} \newcommand{\E}{E} \newcommand{\EU}{EU} \newcommand{\u}{U} \newcommand{\pr}{Pr} \newcommand{\po}{Pr^*} \definecolor{bookred}{RGB}{228,6,19} \definecolor{bookblue}{RGB}{0,92,169} \definecolor{bookpurple}{RGB}{114,49,94} $$

3 Truth Tables

In this chapter we’ll introduce the last few concepts we need from deductive logic, and we’ll learn a useful technique in the process: truth tables.

3.1 Connectives

Complex propositions can be built up out of other, simpler propositions:

  • Aegon is a tyrant and Brandon is a wizard.
  • Either Aegon is a tyrant or Brandon is a wizard.
  • It’s not true that Aegon is a tyrant.

Notice, we call it’s not true that a connective even though it doesn’t actually connect two propositions together.

Here we’ve used two simple propositions to build up longer, more complex ones using the terms and, either/or, and it’s not true that. Such terms are called connectives.

The three connectives just listed are the only ones we’ll need in this book. Each has a name and a shorthand symbol:

Name English Symbol Example
conjunction and \(\wedge\) \(A \wedge B\)
disjunction either/or \(\vee\) \(A \vee B\)
negation it’s not true that \(\neg\) \(\neg A\)

Here are some more examples of complex propositions:

  • \(F \wedge \neg G\): Florida is warm and Geneva is not.
  • \(\neg J \vee \neg K\): Either Jing won’t come to the party or Kamal won’t come.

Sometimes we also need parentheses, to avoid ambiguity. Consider an example from arithmetic: \[ 4 \div 2 \times 2 = 1. \] Is this equation true? That depends on what you mean. Does the division operation come first, or the multiplication? So we use parentheses to clarify: \(4 \div (2 \times 2) = 1\), but \((4 \div 2) \times 2 = 4\).

In logic we use parentheses to prevent ambiguity similarly. Consider: \[ A \vee B \wedge C. \] This proposition is ambiguous, it has two interpretations. In English we can distinguish them with a comma:

  • Either Aegon is a tyrant or Brandon is a wizard, and Cerci is the queen.
  • Either Aegon is a tyrant, or Brandon is a wizard and Cerci is the queen.

Notice how these statements make different claims. The first takes a definite stand on Cerci: she is the queen. It only leaves open the question whether Aegon is a tyrant or Brandon is a wizard. Whereas the second statement takes no definite stand on any of our three characters. Maybe Aegon is a tyrant, maybe not. Maybe Brandon is a wizard and Cerci is the queen, maybe not.

In logic we use parentheses to clarify which interpretation we mean:

  • \((A \vee B) \wedge C\).
  • \(A \vee (B \wedge C)\).

Notice how the first statement is primarily an \(\wedge\) statement. It uses \(\wedge\) to combine the simpler statements \(C\) and \(A \vee B\) together. Whereas the second statement is primarily a \(\vee\) statement. It uses \(\vee\) to combine \(A\) with \(B \wedge C\).

We call the last connective used to build up the statement the main connective.

  • \((A \vee B) \wedge C\): main connective is \(\wedge\).
  • \(A \vee (B \wedge C)\): main connective is \(\vee\).

Two more examples:

  • \(\neg (A \vee B)\): main connective is \(\neg\).
  • \(\neg A \vee B\): main connective is \(\vee\).

Technically, the last example should have parentheses to prevent ambiguity, like so: \((\neg A) \vee B\). But things get cluttered and hard to read if we add parentheses around every negation. So we have a special understanding for \(\neg\) in order to keep things tidy.

This special understanding for \(\mathbin{\sim}\) mirrors the one for minus signs in arithmetic.

The negation symbol \(\mathbin{\sim}\) only applies to the proposition immediately following it.

So in the proposition \(\neg A \vee B\), the \(\neg\) only applies to \(A\). And in \(\neg (A \wedge B) \vee C\), it only applies to \(A \wedge B\).

3.2 Truth Tables

The truth of a complex proposition built using our three connectives depends on the truth of its components. For example, \(\neg A\) is false if \(A\) is true, and it’s true if \(A\) is false:

Table 3.1: Truth table for \(\neg\)

\(A\) \(\neg A\)
T F
F T

Slightly more complicated is the rule for \(\&\):

Table 3.2: Truth table for \(\wedge\)

\(A\) \(B\) \(A \wedge B\)
T T T
T F F
F T F
F F F

There are four rows now because \(\&\) combines two propositions \(A\) and \(B\) together to make the more complex proposition \(A \& B\). Since each of those propositions could be either true or false, there are \(2 \times 2 = 4\) possible situations to consider.

Notice that in only one of these situations is \(A \& B\) true, namely the first row where both \(A\) and \(B\) are true.

The truth table for \(\vee\) (“either/or”) is a little more surprising:

Table 3.3: Truth table for \(\vee\)

\(A\) \(B\) \(A \vee B\)
T T T
T F T
F T T
F F F

Now the complex proposition is always true, except in one case: the last row where \(A\) and \(B\) are both false. It makes sense that \(A \vee B\) is false when both sides are false. But why is it true when both sides are true? Doesn’t “Either \(A\) or \(B\)” mean that just one of these is true?

Sometimes it does have that meaning. But sometimes it means “Either A or B, or both.” Consider this exchange:

X: What are you doing tomorrow night?
Y: I’m either going to a friend’s house or out to a club. I might even do both, if there’s time.

Person Y isn’t necessarily changing their mind here. They could just be clarifying: they’re doing at least one of these things, possibly even both of them.

Although it’s common to use “either/or” in English to mean just one or the other, in logic we use the more permissive reading. So \(A \vee B\) means either \(A\), or \(B\), or both.

We can always convey the stricter way of meaning “either/or” with a more complex construction: \[(A \vee B) \wedge \neg (A \wedge B).\] That says: \[ \mbox{Either $A$ or $B$ is true, and it's not the case that both $A$ and $B$ are true}.\] Which is just a very explicit way of saying: either one or the other, but not both.

We can even verify that the complex construction captures the meaning we want, by using a truth table. We start with an empty table, where the header lists all the formulas we use to build up to the final, complex one we’re interested in:

\(A\) \(B\) \(A \vee B\) \(A \& B\) \(\neg(A \wedge B\)) \((A \vee B) \wedge \neg (A \wedge B)\)
\(\;\)
\(\;\)
\(\;\)
\(\;\)

Then we fill in the possible truth values for the simplest propositions, \(A\) and \(B\):

\(A\) \(B\) \(A \vee B\) \(A \& B\) \(\neg(A \wedge B\)) \((A \vee B) \wedge \neg (A \wedge B)\)
T T
T F
F T
F F

Next we consult the truth tables above for \(\&\) and \(\vee\) to fill in the columns at the next level of complexity:

\(A\) \(B\) \(A \vee B\) \(A \& B\) \(\neg(A \wedge B\)) \((A \vee B) \wedge \neg (A \wedge B)\)
T T T T
T F T F
F T T F
F F F F

Then move up to the next level of complexity. To fill in the column for \(\neg(A \wedge B)\), we consult the column for \(A \wedge B\) and apply the rules from the table for \(\neg\):

\(A\) \(B\) \(A \vee B\) \(A \& B\) \(\neg(A \wedge B\)) \((A \vee B) \wedge \neg (A \wedge B)\)
T T T T F
T F T F T
F T T F T
F F F F T

Finally, we consult the columns for \(A \vee B\) and \(\neg(A \wedge B)\), and the table for \(\&\), to fill in the column for \((A \vee B) \wedge \neg(A \& B)\):

\(A\) \(B\) \(A \vee B\) \(A \& B\) \(\neg(A \wedge B\)) \((A \vee B) \wedge \neg (A \wedge B)\)
T T T T F F
T F T F T T
F T T F T T
F F F F T F

Complex constructions like this are difficult at first, but don’t worry. With practice they quickly become routine.

3.3 Logical Truths & Contradictions

Some propositions come out true in every row of the truth table. Consider \(A \vee \neg A\) for example:

\(A\) \(\neg A\) \(A \vee \neg A\)
T F T
F T T

Such propositions are especially interesting because they must be true. Their truth is guaranteed, just as a matter of logic. We call them logical truths, or tautologies.

The other side of this coin is propositions that are false in every row of the truth table, like \(A \wedge \neg A\):

\(A\) \(\neg A\) \(A \wedge \neg A\)
T F F
F T F

These propositions are called contradictions.

Notice that the negation of a contradiction is a logical truth. For example, consider the truth table for \(\neg (A \wedge \neg A)\):

\(A\) \(\neg A\) \(A \wedge \neg A\) \(\neg (A \wedge \neg A)\)
T F F T
F T F T

3.4 Mutual Exclusivity & Truth Tables

Truth tables can be used to establish that two propositions are mutually exclusive. A very simple example is the propositions \(A\) and \(\neg A\):

\(A\) \(\neg A\)
T F
F T

There is no row in the table where both propositions are true. And if two propositions can’t both be true, they are mutually exclusive by definition.

A slightly more complex example is the pair of propositions \(A \vee B\) and \(\neg A \wedge \neg B\). Their truth table (3.4) also has no row where \(A \vee B\) and \(\neg A \wedge \neg B\) are both true. So they are mutually exclusive.

Table 3.4: The propositions \(A \vee B\) and \(\neg A \wedge \neg B\) are mutually exclusive.

\(A\) \(B\) \(\neg A\) \(\neg B\) \(A \vee B\) \(\neg A \wedge \neg B\)
T T F F T F
T F F T T F
F T T F T F
F F T T F T

3.5 Entailment & Equivalence

Truth tables can also be used to establish that an argument is valid. Here’s a very simple example:

\(A \wedge B\).
Therefore, \(A\).

Obviously it’s not possible for the premise to be true and the conclusion false, so the argument is valid (if a bit silly). Accordingly, there is no line of the truth table where \(A \wedge B\) comes out true, yet \(A\) comes out false:

\(A\) \(B\) \(A \wedge B\)
T T T
T F F
F T F
F F F

The only line where \(A \wedge B\) comes out true is the first one. And on that line \(A\) is true too. So the argument from \(A \wedge B\) to \(A\) is valid.

One more example:

\(A \vee B\).
\(\neg A\).
Therefore, \(B\).

This argument is valid because the first premise says that at least one of the two propositions \(A\) and \(B\) must be true, and the second line says it’s not \(A\). So it must be \(B\) that’s true, as the conclusion asserts. And once again there is no line of the truth table where both \(A \vee B\) and \(\neg A\) are true, yet \(B\) is false:

\(A\) \(B\) \(\neg A\) \(A \vee B\)
T T F T
T F F T
F T T T
F F T F

The only line where both \(A \vee B\) and \(\neg A\) are true is the third row, and \(B\) is true on that row. So once again the truth table tells us this argument is valid.

In the previous chapter we introduced the concept of logical entailment. \(A\) logically entails \(B\) when it’s impossible for \(A\) to be true and \(B\) false. When one proposition entails another, there is no line of the truth table where the first proposition is true and the second is false.

Sometimes entailment goes in both directions: the first proposition entails the second and the second entails the first. For example, not only does \(A \wedge B\) entail \(B \wedge A\), but also \(B \wedge A\) entails \(A \wedge B\).

We say such propositions are logically equivalent. In terms of truth tables, their columns match perfectly, they are identical copies of T’s and F’s.

\(A\) \(B\) \(A \wedge B\) \(B \wedge A\)
T T T T
T F F F
F T F F
F F F F

A more complex example is the propositions \(\neg (A \vee B)\) and \(\neg A \wedge \neg B\):

\(A\) \(B\) \(\neg A\) \(\neg B\) \(A \vee B\) \(\neg(A \vee B)\) \(\neg A \wedge \neg B\)
T T F F T F F
T F F T T F F
F T T F T F F
F F T T F T T

Here again the columns under these two propositions are identical.

3.6 Summary

Connectives can be used to build more complex propositions, like \(A \wedge B\) or \(A \vee \neg B\). We introduced three connectives:

  • \(\neg A\) means it’s not true that \(A\).
  • \(A \wedge B\) means both \(A\) and \(B\) are true.
  • \(A \vee B\) means either \(A\) is true, or \(B\) is true, or both are true.

In a complex proposition, the main connective is the last one used to build it up from simpler components. In \(A \vee \neg B\) the main connective is the \(\vee\).

An argument’s validity can be established with a truth table, if there’s no row where all the premises have a T and yet the conclusion has an F.

Truth tables can also be used to establish that two propositions are mutually exclusive, if there is no row of the table where both propositions have a T.

Logically equivalent propositions entail one another. When two propositions have identical columns in a truth table, they are logically equivalent.

Exercises

  1. Using the following abbreviations:

    \[ \begin{aligned} A &= \mbox{Asha loves Cerci},\\ B &= \mbox{Balon loves Cerci}, \end{aligned} \]

    translate each of the following into logicese (e.g. \(\neg A \vee B\)).

    1. Asha doesn’t love Cerci.
    2. Asha loves Cerci and Balon loves Cerci.
    3. Asha loves Cerci but Balon does not.
    4. Neither Asha nor Balon loves Cerci.
  2. For each pair of propositions, use a truth table to determine whether they are mutually exclusive.

    1. \(A \wedge B\) and \(A \wedge \neg B\).
    2. \(A\) and \(\neg B\).
    3. \(A \vee \neg A\) and \(A \wedge \neg A\).
  3. For each pair of propositions, use a truth table to determine whether they are logically equivalent.

    1. \(\neg A \vee B\) and \(\neg (A \wedge \neg B)\).
    2. \(A\) and \((A \wedge B) \vee (A \wedge \neg B)\).
    3. \(A\) and \((B \wedge A) \vee (B \wedge \neg A)\).
  4. The proposition \(A \vee (B \wedge C)\) features three simple propositions, so its truth table has 8 rows. Fill in the rest of the table:

    \(A\) \(B\) \(C\) \(B \wedge C\) \(A \vee (B \wedge C)\)
    T T T
    T T F
    T F T
    T F F
    F T T
    F T F
    F F T
    F F F
  5. Use a truth table to determine whether the propositions \(A \vee (B \wedge C)\) and \((A \vee B) \wedge (A \vee C)\) are equivalent.

  6. True or false: if \(A\) and \(B\) are mutually exclusive, then \(A\) and \(\neg B\) are logically equivalent.

  7. If we are considering two compatible propositions \(A\) and \(B\), the truth-table has \(4\) rows. If there are three compatible propositions \(A\), \(B\), and \(C\), there are \(8\) rows.

    1. How many rows are there if we have four compatible propositions?
    2. In general, how many rows are there for \(n\) compatible propositions?
    3. How many rows are there if we have three propositions \(A\), \(B\), and \(C\), but \(A\) and \(B\) are not compatible (they are mutually exclusive). Assume the other pairs are compatible.
  8. Suppose a family has two children.

    1. How many possible ways are there for their birthdays to be distributed among the \(12\) months of the year?
    2. Suppose we know the two siblings were born in different months. How many possibilities are there then?
    3. Suppose another family has three children. We don’t know whether any of them have the same birth-month. How many possibilities are there in this case?