Notes on Negations and Variations of Conditional Statements
Negations and De Morgan's Laws
De Morgan's laws give the negations of conjunctions and disjunctions:
Intuition: negation flips the sign upside down when dealing with conjunctions or disjunctions.
Quick takeaway: negation of a conjunction becomes a disjunction of negations; negation of a disjunction becomes a conjunction of negations.
Example 1 (conjunction): "I got an A in math and in anthropology".
- Let = "I got an A in math" and = "I got an A in anthropology".
- The negation is , which reads: "I didn't get an A in math or I didn't get an A in anthropology."
- Why: for a conjunction to be true, both and must be true. If either fails (at least one is false), the conjunction is false, so the negation is true.
Example 2 (disjunction): "I'm going out or I'm going to stay in and study".
- Let = "I'm going out" and = "I'm going to stay in and study".
- The negation is , which reads: "I'm not going out and I'm not going to stay in and study."\
- Why: for a disjunction to be true, at least one of or must be true. To make the disjunction false, negate both parts.
- This illustrates the second De Morgan's law: the negation of an OR becomes an AND of negations.
Negation of Conditional Statements
Original conditional example: "If I study hard, then I will get an A."
- Let = "I study hard" and = "I will get an A".
- Symbolically:
Common but incorrect negations people often guess:
- "If I study hard, I will not get an A." (not the correct negation)
- "If I don't study hard, I will not get an A." (this is the inverse, not the negation of the original)
Correct negation:
- , which reads: "I will study hard and I will not get an A."
- Important note: the negation of a conditional is not itself a conditional; it is a conjunction of the antecedent with the negation of the consequent.
Summary formula:
Variations of Conditional Statements: Converse, Inverse, Contrapositive
Start with the same original: where
- = "I study hard" and = "I will get an A".
Converse: swap the order of the implication
- Symbol:
- Verbal: "If I get an A, then I study hard."
Inverse: negate both parts but keep the order
- Symbol:
- Verbal: "If I don't study hard, then I won't get an A."
Contrapositive: negate both parts and flip the order
- Symbol:
- Verbal: "If I didn't get an A, then I did not study hard."
Key point about logical equivalence:
- The contrapositive is logically equivalent to the original statement:
- The converse and the inverse are logically equivalent to each other, but not to the original: and (but both differ from the original).
Concrete Example: Bowl Game and Road Trip
Setup:
- Let = "We go to a bowl game this year".
- Let = "I am making a road trip".
- Original: (If we go to a bowl game this year, then I am making a road trip.)
Variations:
- Converse: , verbally: "If I am making a road trip, then we are going to a bowl game this year."
- Inverse: , verbally: "If we do not go to a bowl game this year, then I am not making a road trip."
- Contrapositive: , verbally: "If I am not making a road trip, then we are not going to a bowl game this year."
Truth-table check (summary in row form for the four possible truth assignments of P and Q):
- Row (P, Q) = (T, T):
- = True
- = True
- = True
- = True
- Row (P, Q) = (T, F):
- = False
- = True
- = True
- = False
- Row (P, Q) = (F, T):
- = True
- = False
- = False
- = True
- Row (P, Q) = (F, F):
- = True
- = True
- = True
- = True
Conclusions from the truth table:
- The contrapositive (\neg Q -> \neg P) is equivalent to the original (P -> Q).
- The converse (Q -> P) and the inverse (\neg P -> \neg Q) are equivalent to each other, but not to the original.
Practical Takeaways and Critical Thinking
When analyzing statements, be careful with negations:
- For conjunctions: negate each part and switch AND to OR. As a rule: .
- For disjunctions: negate each part and switch OR to AND. As a rule: .
For conditionals:
- The negation is not another conditional; it is a conjunction: .
- Variations (converse, inverse, contrapositive) behave differently in terms of logical equivalence.
- The contrapositive is the only variation equivalent to the original; the converse and inverse form an equivalent pair to each other but not to the original.
This material helps prevent being misled by superficially similar statements and supports critical listening and reasoning in everyday discourse and in exams.
Quick reference formulas (LaTeX):
- De Morgan's laws:
- Negation of conditional:
- Variations:
- Converse:
- Inverse:
- Contrapositive:
- Equivalences:
- (contrapositive)
- Converse and Inverse are equivalent to each other but not to the original