2.4: Constructing Truth Tables (2024)

  1. Last updated
  2. Save as PDF
  • Page ID
    129510
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}}}\) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash{#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    2.4: Constructing Truth Tables (2)

    Figure \(\PageIndex{1}\):Just like solving a puzzle, a computer programmer must consider all potential solutions in order to account for each possible outcome. (credit: modification of work “Deadline Xmas 2010” by Allan Henderson/Flickr, CC BY 2.0)

    Learning Objectives

    After completing this section, you should be able to:

    1. Interpret and apply negations, conjunctions, and disjunctions.
    2. Construct a truth table using negations, conjunctions, and disjunctions.
    3. Construct a truth table for a compound statement and interpret its validity.

    Are you familiar with the Choose Your Own Adventure book series written by Edward Packard? These gamebooks allow the reader to become one of the characters and make decisions that affect what happens next, resulting in different sequences of events in the story and endings based on the choices made. Writing a computer program is a little like what it must be like to write one of these books. The programmer must consider all the possible inputs that a user can put into the program and decide what will happen in each case, then write their program to account for each of these possible outcomes.

    A truth table is a graphical tool used to analyze all the possible truth values of the component logical statements to determine the validity of a statement or argument along with all its possible outcomes. The rows of the table correspond to each possible outcome for the given logical statement identified at the top of each column. A single logical statement pp has two possible truth values, true or false. In truth tables, a capital T will represent true values, and a capital F will represent false values.

    In this section, you will use the knowledge built in Statements and Quantifiers and Compound Statements to analyze arguments and determine their truth value and validity. A logical argument is valid if its conclusion follows from its premises, regardless of whether those premises are true or false. You will then explore the truth tables for negation, conjunction, and disjunction, and use these truth tables to analyze compound logical statements containing these connectives.

    Interpret and Apply Negations, Conjunctions, and Disjunctions

    The negation of a statement will have the opposite truth value of the original statement. When pp is true, ~p~p is false, and when pp is false, ~p~p is true.

    Exercise \(\PageIndex{1}\)

    For each logical statement, determine the truth value of its negation.

    1. pp: 3+5=8.3+5=8.
    2. qq: All horses are mustangs.
    3. ~r~r: New Delhi is not the capital of India.
    Answer

    pis true because 3 + 5 does equal 8; therefore, the negation of p, ~ p : 3 + 5 ≠ 8 ~ p : 3 + 5 ≠ 8 , is false.

    q is false because there are other types of horses besides mustangs, such as Clydesdales or Arabians; therefore, the negation of q, ~ q , is true.

    ~ r is false because New Delhi is the capital of India; therefore, the negation of ~r, r , is true.

    Your Turn \(\PageIndex{1}\)

    For each logical statement, determine the truth value of its negation.

    1. p: 3x5 = 14.
    2. q: Some houses are built with bricks
    3. r: Abuja is the capital of Nigeria.

    A conjunction is a logical and statement. For a conjunction to be true, both statements that make up the conjunction must be true. If at least one of the statements is false, the and statement is false.

    Exercise \(\PageIndex{2}\)

    Finding the Truth Value of a Conjunction

    Given \(p: 4+7=11, q: 11-3=7\), and \(r: 7 \times 11=77\), determine the truth value of each conjunction.
    1. \(p \wedge q\)
    2. \(\sim q \wedge r\)
    3. \(\sim p \wedge q\)

    Answer

    1. \(p\) is true, and \(q\) is false. Because one statement is true, and the other statement is false, this makes the complete conjunction false.
    2. \(q\) is false, so \(\sim q\) is true, and \(r\) is true. Therefore, both statements are true, making the complete conjunction true.
    3. \(\sim p\) is false, and \(q\) is false. Because both statements are false, the complete conjunction is false.

    Your Turn \(\PageIndex{2}\)

    Given \(p\) : Yellow is a primary color, \(q\) : Blue is a primary color, and \(r\) : Green is a primary color, determine the truth value of each conjunction.

    1. \(p \wedge q\)
    2. \(q \wedge r\)
    3. \(\sim r \wedge p\).

    Checkpoint

    The only time a conjunction is true is if both statements that make up the conjunction are true.

    A disjunction is a logical inclusive or statement, which means that a disjunction is true if one or both statements that form it are true. The only way a logical inclusive or statement is false is if both statements that form the disjunction are false.

    Exercise \(\PageIndex{3}\)

    Given \(p: 4+7=11, q: 11-3=7\), and \(r: 7 \times 11=77\), determine the truth value of each disjunction.

    1. \(p \vee q\)
    2. \(\sim q \vee r\)
    3. \(\sim p \vee q\)

    Answer
    1. \(p\) is true, and \(q\) is false. One statement is true, and one statement is false, which makes the complete disjunction true.
    2. \(q\) is false, so \(\sim q\) is true, and \(r\) is true. Therefore, one statement is true, and the other statement is true, which makes the complete disjunction true.
    3. \(\sim p\) is false, and \(q\) is false. When all of the component statements are false, the disjunction is false.
    Your Turn \(\PageIndex{3}\)

    Given \(p\) : Yellow is a primary color, \(q\) : Blue is a primary color, and \(r\) : Green is a primary color, determine the truth value of each disjunction.

    1. \(p \vee q\)
    2. \(\sim p \vee r\)
    3. \(q \vee r\)

    In the next example, you will apply the dominance of connectives to find the truth values of compound statements containing negations, conjunctions, and disjunctions and use a table to record the results. When constructing a truth table to analyze an argument where you can determine the truth value of each component statement, the strategy is to create a table with two rows. The first row contains the symbols representing the components that make up the compound statement. The second row contains the truth values of each component below its symbol. Include as many columns as necessary to represent the value of each compound statement. The last column includes the complete compound statement with its truth value below it.

    Video

    Logic Part 2: Truth Values of Conjunctions: Is an "AND" statement true or false?

    Logic Part 3: Truth Values of Disjunctions: Is an "OR" statement true or false?

    Exercise \(\PageIndex{4}\)

    Finding the Truth Value of Compound Statements

    Given \(p: 4+7=11, q: 11-3=7\), and \(r: 7 \times 11=77\), construct a truth table to determine the truth value of each compound statement

    1. \(\sim p \wedge q \vee r\)
    2. \(\sim p \vee q \wedge r\)
    3. \(\sim(p \wedge r) \vee q\)

    Answer

    1. Step 1: The statement " \(\sim p \wedge q \vee r\) " contains three basic logical statements, \(p, q\), and \(r\), and three connectives, \(\sim, \wedge, \vee\). When we place parentheses in the statement to indicate the dominance of connectives, the statement becomes \((((\sim p) \wedge q) \vee r)\).
    Step 2: After we have applied the dominance of connectives, we create a two row table that includes a column for each basic statement that makes up the compound statement, and an additional column for the contents of each parentheses. Because we have three sets of parentheses, we include a column for \(\sim p\), the innermost parentheses, a column for \((\sim p) \wedge q\), the next set of parentheses, and \(((\sim p) \wedge q) \vee r\) in the last column for the third parentheses.
    Step 3: Once the table is created, we determine the truth value of each statement starting from left to right. The truth values of \(p, q\), and \(r\) are true, false, and true, respectively, so we place T, F, and \(\mathrm{T}\) in the second row of the table. Because \(p\) is true, \(\sim p\) is false.
    Step 4: Next, evaluate \(\sim p \wedge q\) from the table: \(\sim p\) is false, and \(q\) is also false, so \(\sim p \wedge q\) is false, because a conjunction is only true if both of the statements that make it are true. Place an \(\mathrm{F}\) in the table below its heading.
    Step 5: Finally, using the table, we understand that \((\sim p \wedge q)\) is false and \(r\) is true, so the complete statement \((\sim p \wedge q) \vee r\) is false or true, which is true (because a disjunction is true whenever at least one of the statements that make it is true). Place a \(\mathrm{T}\) in the last column of the table. The complete statement \(\sim p \wedge q \vee r\) is true.

    p

    2.4: Constructing Truth Tables (3)q

    2.4: Constructing Truth Tables (4)r

    -p

    (~p)∧q

    ((~p)∧q)∨r

    2.4: Constructing Truth Tables (5)T

    2.4: Constructing Truth Tables (6)F

    T

    2.4: Constructing Truth Tables (7)F

    2.4: Constructing Truth Tables (8)F

    2.4: Constructing Truth Tables (9)T

    2. Step 1: Applying the dominance of connectives to the original compound statement \(\sim p \vee q \wedge r\), we get \((((\sim p) \vee q) \wedge r)\).
    Step 2: The table needs columns for \(p, q, r, \sim p,(\sim p) \vee q\), and \(((\sim p) \vee q) \wedge r\).
    Step 3:The truth values of \(p, q, r\), and \(\sim p\) are the same as in Question 1.
    Step 4: Next, \(\sim p \vee q\) is false or false, which is false, so we place an \(\mathrm{F}\) below this statement in the table. This is the only time that a disjunction is false.
    Step 5: Finally, \(\sim p \vee q\) and \(r\) are the conjunction of the statements, \(\sim p \vee q\) and \(r\), and so the expressions evaluate to false and true, which is false. Recall that the only time an "and" statement is true is when both statements that form it are also true. The complete statement \(\sim p \vee q \wedge r\) is false.

    p

    2.4: Constructing Truth Tables (10)q

    2.4: Constructing Truth Tables (11)r

    -p

    (~p)∧q

    ((~p)∧q)∨r

    T

    F

    T

    F

    F

    F


    3. Step 1: Applying the dominance of connectives to the original statement, we have: \(((\sim(p \wedge r)) \vee q)\).
    Step 2: So, the table needs the following columns: \(p, q, r, p \wedge r, \sim(p \wedge r)\), and \(\sim(p \wedge r) \vee q\).
    Step 3: The truth values of \(p, q\), and \(r\) are the same as in Questions 1 and 2.
    Step 4: From the table it can be seen that \(p \wedge r\) is true and true, which is true. So the negation of \(p\) and \(r\) is false, because the negation of a statement always has the opposite truth value of the original statement.
    Step 5: Finally, \(\sim(p \wedge r) \vee q\) is the disjunction of \(\sim(p \wedge r)\) with \(q\), and so we have false or false, which makes the complete statement false.

    p

    2.4: Constructing Truth Tables (12)q

    2.4: Constructing Truth Tables (13)r

    -p

    (~p)∧q

    ((~p)∧q)∨r

    T F T T F F
    Your Turn \(\PageIndex{4}\)

    Given \(p\) : Yellow is a primary color, \(q\) : Blue is a primary color, and \(r\) : Green is a primary color, determine the truth value of each compound statement, by constructing a truth table.

    1. \(\sim q \wedge p \vee r\)
    2. \(p \vee q \wedge \sim r\)
    3. \(\sim(p \wedge r) \wedge q\)

    Construct Truth Tables to Analyze All Possible Outcomes

    Recall from Statements and Questions that the negation of a statement will always have the opposite truth value of the original statement; if a statement pp is false, then its negation ~p~p is true, and if a statement pp is true, then its negation ~p~p is false. To create a truth table for the negation of statement pp, add a column with a heading of ~p~p, and for each row, input the truth value with the opposite value of the value listed in the column for pp, as depicted in the table below.

    Negation
    p ~ p
    T F
    F T

    Conjunctions and disjunctions are compound statements formed when two logical statements combine with the connectives “and” and “or” respectively. How does that change the number of possible outcomes and thus determine the number of rows in our truth table? The multiplication principle, also known as the fundamental counting principle, states that the number of ways you can select an item from a group of nn items and another item from a group with mm items is equal to the product of mm and nn. Because each proposition pp and qq has two possible outcomes, true or false, the multiplication principle states that there will be 2×2=42×2=4 possible outcomes: {TT, TF, FT, FF}.

    The tree diagram and table in Figure \(\PageIndex{2}\) demonstrate the four possible outcomes for two propositions pp and qq.

    2.4: Constructing Truth Tables (14)

    Figure \(\PageIndex{2}\):

    A conjunction is a logical and statement. For a conjunction to be true, both the statements that make up the conjunction must be true. If at least one of the statements is false, the and statement is false.

    A disjunction is a logical inclusive or statement. Which means that a disjunction is true if one or both statements that make it are true. The only way a logical inclusive or statement is false is if both statements that make up the disjunction are false.

    Conjunction (AND) Disjunction (OR)
    pp qq pqpq pp qq pqpq
    T T T T T T
    T F F T F T
    F T F F T T
    F F F F F F

    Video

    Logic Part 4: Truth Values of Compound Statements with "and", "or", and "not"

    Logic Part 5: What are truth tables? How do you set them up?

    Exercise \(\PageIndex{5}\)

    Constructing Truth Tables to Analyze Compound Statements

    Construct a truth table to analyze all possible outcomes for each of the following arguments.

    1. \(p \vee \sim q\)
    2. \(\sim(p \wedge q)\)
    3. \((p \vee \sim q) \wedge r\)

    Answer

    1. Step 1: Because there are two basic statements, \(p\) and \(q\), and each of these has two possible outcomes, we will have \(2(2)=4\) rows in our table to represent all possible outcomes: TT, TF, \(\mathrm{FT}\), and FF. The columns will include \(p, q, \sim q\), and \(p \vee \sim q\).
    Step 2: Every value in column \(\sim q\) will have the opposite truth value of the corresponding value in column \(q\) : F, T, F, and T.
    Step 3: To complete the last column, evaluate each element in column \(p\) with the corresponding element in column \(\sim q\) using the connective or.

    p

    2.4: Constructing Truth Tables (15)q

    \(\sim q\)

    \(p \vee \sim q\).

    T

    T

    F

    T

    T

    F

    T

    T

    F

    T

    F

    F

    F

    F

    T

    T


    2. Step 1: The columns will include \(p, q, p \wedge q\), and \(\sim(p \wedge q)\). Because there are two basic statements, \(p\) and \(q\), the table will have four rows to account for all possible outcomes.
    Step 2: The \(p \wedge q\) column will be completed by evaluating the corresponding elements in columns \(p\) and \(q\) respectively with the and connective.
    Step 3: The final column, \(\sim(p \wedge q)\), will be the negation of the \(p \wedge q\) column.

    p

    q

    \(p \wedge q\)

    \(\sim(p \wedge q)\)

    T

    T

    T

    F

    T

    F

    F

    T

    F

    T

    F

    T

    F

    F

    F

    T

    3. Step 1: This statement has three basic statements, \(p, q\), and \(r\). Because each basic statement has two possible truth values, true or false, the multiplication principal indicates there are \(2(2)(2)=8\) possible outcomes. So eight rows of outcomes are needed in the truth table to account for each possibility. Half of the eight possibilities must be true for the first statement, and half must be false.
    Step 2: So, the first column for statement \(p\), will have four T's followed by four F's. In the second column for statement \(q\), when \(p\) is true, half the outcomes for \(q\) must be true and the other half must be false, and the same pattern will repeat for when \(p\) is false. So, column \(q\) will have TT, FF, FF, FF.

    Step 3: The column for the third statement, \(r\), must alternate between \(T\) and \(F\). Once, the three basic propositions are listed, you will need a column for \(\sim, p \vee \sim q\), and \((p \vee \sim q) \wedge r\).
    Step 4: The column for the negation of \(q, \sim q\), will have the opposite truth value of each value in column \(q\).
    Step 5: Next, fill in the truth values for the column containing the statement \(p \vee \sim q\). The or statement is true if at least one of \(p\) or \(\sim q\) is true, otherwise it is false.
    Step 6: Finally, fill in the column containing the conjunction \((p \vee \sim q) \wedge r\). To evaluate this statement, combine column \(p \vee \sim q\) and column \(r\) with the and connective. Recall, that only time "and" is true is when both values are true, otherwise the statement is false. The complete truth table is:

    \(p\)

    \(q\)2.4: Constructing Truth Tables (16)

    2.4: Constructing Truth Tables (17)\(r\)

    \(\sim q\)

    \(p \vee \sim q\)

    \((p \vee \sim q) \wedge r\)

    T

    T

    T

    F

    T

    T

    T

    T

    F

    F

    T

    F

    T

    F

    T

    T

    T

    T

    T

    F

    F

    T

    T

    F

    F

    T

    T

    F

    F

    F

    F

    T

    F

    F

    F

    F

    F

    F

    T

    T

    T

    T

    F

    F

    F

    T

    T

    F

    Your Turn \(\PageIndex{5}\)

    Construct a truth table to analyze all possible outcomes for each of the following arguments.

    1. \(p \wedge \sim q\)
    2. \(\sim(p \vee q)\)
    3. \((p \wedge \sim q) \vee r\)

    Video

    Logic Part 6: More on Truth Tables and Setting Up Rows and Column Headings

    Determine the Validity of a Truth Table for a Compound Statement

    A logical statement is valid if it is always true regardless of the truth values of its component parts. To test the validity of a compound statement, construct a truth table to analyze all possible outcomes. If the last column, representing the complete statement, contains only true values, the statement is valid.

    Exercise \(\PageIndex{6}\)

    Determining the Validity of Compound Statements

    Construct a truth table to determine the validity of each of the following statements.
    1. \(\sim p \wedge q\)
    2. \(\sim(p \wedge \sim p)\)

    Answer

    1. Step 1: Because there are two statements, \(p\) and \(q\), and each of these has two possible outcomes, there will be \(2(2)=4\) rows in our table to represent all possible outcomes: TT, TF, \(\mathrm{FT}\), and FF.
    Step 2: The columns, will include \(p, q, \sim p\) and \(\sim p \wedge q\). Every value in column \(\sim p\) will have the opposite truth value of the corresponding value in column \(p\).
    Step 3: To complete the last column, evaluate each element in column \(\sim p\) with the corresponding element in column \(q\) using the connective and. The last column contains at least one false, therefore the statement \(\sim p \wedge q\) is not valid.

    \(p\)

    \(q\)

    \(\sim p\)

    \(\sim \boldsymbol{p} \wedge \boldsymbol{q}\)

    T

    T

    F

    F

    T

    F

    F

    F

    F

    T

    T

    T

    F

    F

    T

    F

    2. Step 1: Because the statement \(\sim(p \wedge \sim p)\) only contains one basic proposition, the truth table will only contain two rows. Statement \(p\) may be either true or false.
    Step 2: The columns will include \(p, \sim p, p \wedge \sim p\), and \(\sim(p \wedge \sim p)\). Evaluate column \(p \wedge \sim p\) with the and connective, because the symbol \(\wedge\) represents a conjunction or logical and statement. True and false is false, and false and true is also false.
    Step 3: The final column is the negation of each entry in the third column, both of which are false, so the negation of false is true. Because all the truth values in the final column are true, the statement \(\sim(p \wedge \sim p)\) is valid.

    2.4: Constructing Truth Tables (18)\(p\)

    \(\sim p\)

    \(p \wedge \sim p\)

    \(\sim(p \wedge \sim p)\)

    T

    F

    F

    T

    F

    T

    F

    T

    Your Turn\(\PageIndex{6}\)

    Construct a truth table to determine the validity of each of the following statements.
    1. \(p \vee \sim p\)
    2. \(\sim p \vee \sim q\)

    Check Your Understanding

    1. A logical argument is _____ if its conclusion follows from its premises.
    2. A logical statement is valid if it is always _____.
    3. A _____ _____ is a tool used to analyze all the possible outcomes for a logical statement.
    4. The truth table for the conjunction, p \wedge q/**/, has _____ rows of truth values.
    5. The truth table for the negation of a logical statement, /**/\text{~}p/**/, has _____ rows of truth values.

    Section 2.3 Exercises

    For the following exercises, find the truth value of each statement.

    1. \(p: 7 \times 3=21\). What is the truth value of \(\sim p\) ?

    2. \(q\) : The sun revolves around the Earth. What is the truth value of \(\sim q\) ?

    3. \(\sim r\) : The acceleration of gravity is \(9.81 \mathrm{~m} / \mathrm{sec}^2\). What is the truth value of \(r\) ?

    4. \(s\) : Dan Brown is not the author of the book, The Davinci Code. What is the truth value of \(\sim(\sim s)\) ?

    5. \(t\) : Broccoli is a vegetable. What is the truth value of \(\sim(\sim t)\) ?

    For the following exercises, given \(p: 1+2=3, q\) : Five is an even number, and \(r\) : Seven is a prime number, find the truth value of each of the following statements.

    6. \(\sim q\)

    7. \(p \wedge q\)

    8. \(p \vee q\)

    9. \(\sim p \vee \sim q\)

    10. \(p \wedge \sim q\)

    11. \(p \wedge r\)

    12. \(q \wedge r\)

    13. \(q \wedge \sim r\)

    14. \(q \vee \sim r\)

    15. \(\sim(p \wedge r)\)

    16. \(p \vee q \wedge r\)

    17. \(\sim p \vee(q \wedge r)\)

    18. \(\sim(q \wedge r) \vee \sim p\)

    19. \(q \vee r \vee p\)

    20. \(\sim q \wedge r \wedge p\)

    For the following exercises, complete the truth table to determine the truth value of the proposition in the last column.

    21.

    \(p\)2.4: Constructing Truth Tables (19)

    \(q\)2.4: Constructing Truth Tables (20)

    2.4: Constructing Truth Tables (21)\(r\)2.4: Constructing Truth Tables (22)

    \(\sim p\)

    \(\sim p \vee q\)

    \((\sim p \vee q) \wedge r\)

    T2.4: Constructing Truth Tables (23)

    T

    T2.4: Constructing Truth Tables (24)

    22.

    \(p\)2.4: Constructing Truth Tables (25)

    \(q\)2.4: Constructing Truth Tables (26)

    2.4: Constructing Truth Tables (27)\(r\)2.4: Constructing Truth Tables (28)

    \(\sim p\)

    \(\sim p \vee q\)

    \((\sim p \vee q) \wedge r\)

    F2.4: Constructing Truth Tables (29)

    T2.4: Constructing Truth Tables (30)

    F2.4: Constructing Truth Tables (31)

    23.

    \(p\)

    2.4: Constructing Truth Tables (32)\(q\)

    2.4: Constructing Truth Tables (33)\(r\)

    \(\sim p\)

    \(\sim r\)

    \(\sim p \wedge q(\sim p \wedge q) \vee \sim r\)

    F

    F

    F

    24.

    \(p\)2.4: Constructing Truth Tables (34)

    2.4: Constructing Truth Tables (35)\(q\)

    \(r\)2.4: Constructing Truth Tables (36)

    \(\sim p\)

    \(\sim r\)

    \(\sim p \vee q\)

    \((\sim p \vee q) \vee \sim r\)

    F2.4: Constructing Truth Tables (37)

    F2.4: Constructing Truth Tables (38)

    F2.4: Constructing Truth Tables (39)

    For the following exercises, given \(p\) : All triangles have three sides, \(q\) : Some rectangles are not square, and \(r\) : A pentagon has eight sides, determine the truth value of each compound statement by constructing a truth table.

    25. \(\sim r \wedge q \wedge p\)

    26. \(\sim(q \wedge p) \vee r\)

    27. \(\sim p \vee q \wedge r\)

    28. \(\sim p \vee \sim q \vee r\)

    For the following exercises, construct a truth table to analyze all the possible outcomes for the following arguments.

    29. \(\sim q \wedge q\)

    30. \(\sim p \vee \sim q\)

    31. \(\sim p \wedge \sim q\)

    32. \(p \wedge q \vee r\)

    For the following exercises, construct a truth table to determine the validity of each statement.

    33. \(\sim q \vee q\)

    34. \(p \wedge \sim q\)

    35. \(p \wedge q \vee \sim p\)

    36. \((p \wedge q) \vee(\sim p \wedge \sim q)\)

    2.4:  Constructing Truth Tables (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Dean Jakubowski Ret

    Last Updated:

    Views: 5834

    Rating: 5 / 5 (70 voted)

    Reviews: 85% of readers found this page helpful

    Author information

    Name: Dean Jakubowski Ret

    Birthday: 1996-05-10

    Address: Apt. 425 4346 Santiago Islands, Shariside, AK 38830-1874

    Phone: +96313309894162

    Job: Legacy Sales Designer

    Hobby: Baseball, Wood carving, Candle making, Jigsaw puzzles, Lacemaking, Parkour, Drawing

    Introduction: My name is Dean Jakubowski Ret, I am a enthusiastic, friendly, homely, handsome, zealous, brainy, elegant person who loves writing and wants to share my knowledge and understanding with you.