Truth Tables and Propositions Generated by a Set

What is in a set and what is not in a set leads to some interesting ways of analyzing truth or falsehood. In this section we use 0 for false (no) and 1 for true (yes). One can also speak in terms of "do-not" or "do", "do not perform this action" or "do this action". It is a matter of interpretation, an interpretation that must be established and remain consistent. We can write equations to express these ideas so that many factors can be considered and operated upon in a standard way. This section starts you down that path.

3.2 Truth Tables and Propositions Generated by a Set

3.2.1 Truth Tables

Consider the compound proposition c = ( p q ) ∨ ( ¬ qr ), where p , q , and  r are propositions. This is an example of a proposition generated by p , q , and r.  We will define this terminology later in the section. Since each of the three simple propositions has two possible truth values, it follows that there are eight different combinations of truth values that determine a value for c . These values can be obtained from a truth table for c . To construct the truth table, we build c from p , q , and r and from the logical operators. The result is the truth table below. Strictly speaking, the first three columns and the last column make up the truth table for c . The other columns are work space needed to build up to c.

 

Table 3.2.1: Truth Table for c = (p q) ∨ (¬qr

Note that the first three columns of the truth table are an enumeration of the eight three-digit binary integers. This standardizes the order in which the cases are listed. In general, if c is generated by n simple propositions, then the truth table for c will have 2n rows with the first n columns being an enumeration of the n digit binary integers. In our example, we can see at a glance that for exactly four of the eight cases, c will be true. For example, if p and r are true and q is false (the sixth case), then c is true.

Let S be any set of propositions. We will give two definitions of a proposition generated by S. The first is a bit imprecise but should be clear. The second definition is called a recursive definition. If you find it confusing, use the first definition and return to the second later.

 

3.2.2 Propositions Generated by a Set

Definition 3.2.2: Proposition Generated by a Set. Let S be any set of propositions. A proposition generated by S is any valid combination of propositions in S with conjunction, disjunction, and negation. Or, to be more precise,

  1. If pS, then p is a proposition generated by S, and
  2. If x and y are propositions generated by S, then so are (x), ¬x, x y, and x y.

Note: We have not included the conditional and biconditional in the definition because they can both be generated from conjunction, disjunction, and negation, as we will see later.

If S is a finite set, then we may use slightly different terminology.  For example, if S = {p, q, r}, we might say that a proposition is generated by p, q, and r instead of from {p, q, r}.

It is customary to use the following hierarchy for interpreting propositions, with parentheses overriding this order:

  • First: Negation
  • Second: Conjunction
  • Third: Disjunction
  • Fourth: The conditional operation
  • Fifth: The biconditional operation

Within any level of the hierarchy, work from left to right. Using these rules, p  q   r is taken to mean (p  q ) ∨ r. These precedence rules are universal and are exactly those used by computer languages to interpret logical expressions.

 

Example 3.2.3: Examples of the Hierarchy of Logical Operations. A few shortened expressions and their fully parenthesized versions:

  1. p q r is (p q) ∧ r.
  2. ¬p ∨ ¬r is (¬p) ∨ (¬r).
  3. ¬¬p is ¬(¬p).
  4. p q r s is p ((q r) s).

A proposition generated by a set S need not include each element of S in its expression. For example, ¬qr is a proposition generated by p, q, and r.

 


Source: Al Doerr and Ken Levasseur, http://faculty.uml.edu/klevasseur/ads-latex/ads.pdf
Creative Commons License This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License.

Last modified: Tuesday, August 11, 2020, 12:41 PM