Propositions and Truth Tables

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Which propositional logic operator is correctly matched with its meaning?

  • Negation: not (correct)
  • Disjunction: if...then
  • Conjunction: or
  • Equivalence: and

Given p = "The sun is shining" and q = "Birds are singing", which symbolic representation accurately translates "If the sun is shining, then birds are not singing"?

  • p ∧ ¬q
  • ¬p ∨ q
  • p → q
  • p → ¬q (correct)

Which of the following statements is the correct symbolic representation of "I do not like discrete math and I like solving math problems," given that p = "I love discrete math" and q = "I like solving math problems"?

  • ¬p ∨ q
  • p ∧ ¬q
  • ¬(p ∧ q)
  • ¬p ∧ q (correct)

If p represents "It is raining" and q represents "The ground is wet", which of the following correctly expresses the statement "It is not the case that it is raining and the ground is wet"?

<p>¬(p ∧ q) (A)</p> Signup and view all the answers

Which of the following best describes a contradiction?

<p>A proposition that is always false. (B)</p> Signup and view all the answers

What is the number of rows required in a truth table for a proposition with four variables (p, q, r, s)?

<p>16 (A)</p> Signup and view all the answers

Which of the following is logically equivalent to p → q?

<p>¬p ∨ q (A)</p> Signup and view all the answers

According to the identity laws, which expression is equivalent to p ∧ T?

<p>p (D)</p> Signup and view all the answers

Using De Morgan's Laws, which of the following is equivalent to ¬(p ∨ q)?

<p>¬p ∧ ¬q (A)</p> Signup and view all the answers

Which law is demonstrated by the equivalence: "I will eat (apples or oranges) and pears" is equivalent to "(I will eat apples and pears) or (I will eat oranges and pears)"?

<p>Distributive Law (A)</p> Signup and view all the answers

Flashcards

Contradiction

A proposition that is always false

Tautology

A proposition that is always true.

Contingency

A proposition that can be either true or false.

Logical Equivalence

Two propositions are equivalent if they have the same truth value in all possible cases.

Signup and view all the flashcards

Conditional Law

p → q is equivalent to ¬p ∨ q

Signup and view all the flashcards

Distributive Laws

p ∧ (q ∨ r) is equivalent to (p ∧ q) ∨ (p ∧ r); p ∨ (q ∧ r) is equivalent to (p ∨ q) ∧ (p ∨ r)

Signup and view all the flashcards

Absorption Laws

p ∧ (p ∨ q) = p and p ∨ (p ∧ q) = p

Signup and view all the flashcards

Commutative Laws

p ∧ q = q ∧ p; p ∨ q = q ∨ p

Signup and view all the flashcards

De Morgan's Laws

¬(p ∧ q) = ¬p ∨ ¬q and ¬(p ∨ q) = ¬p ∧ ¬q

Signup and view all the flashcards

Double Negation

¬¬p = p

Signup and view all the flashcards

Study Notes

  • Study notes on Propositions and Truth Tables

Propositional Logic Operators

  • Negation uses the symbol ¬ and means "not"
  • Conjunction uses the symbol ∧ and means "and"
  • Disjunction uses the symbol V and means "or"
  • Implication uses the symbol → and means "if...then"
  • Equivalence uses the symbol ↔ and means "if and only if"

Converting Statements to Symbols

  • p = "I love discrete math."
  • q = "I like solving math problems."
  • r = "I am an IT student"

Converting the following symbols to statements:

  • ¬p means "I do not love discrete math" or "It is not true that I love discrete math."
  • p ∧ q means "I love discrete math and I like solving math problems."
  • p v q means "I love discrete math or I like solving math problems."
  • p → q means "If I love discrete math, then I like solving math problems."
  • ¬(p^q) means "It is not true that I love discrete math and I like solving math problems," or "I do not love discrete math or I do not like solving math problems."

Converting Statements to Symbols

  • p = "I love discrete math"
  • q = "I like solving math problems"
  • r = "I am an IT student"

Converting the following statements to symbols:

  • "I don't like discrete math or I like solving math problems" translates to ¬p v q
  • "If I am an IT student, then I don't love discrete mathematics" translates to r → ¬p
  • "I love discrete math or I like solving math problems" translates to p v q
  • "It is not the case that I like discrete math or I don't like solving math problems" translates to ¬(p v ¬q)
  • "If I don't like discrete math, then I don't like solving math problems" translates to ¬p → q

Answers to the Question:

  • ¬p → ¬r means "If I do not like sports, then I am not a sports athlete."
  • (¬p ^ ¬q) → ¬r means "If I do not like sports and I do not love playing ball games, then I am not a sports athlete."
  • (p^q) → r means "If I like sports and I love playing ball games, then I am a sports athlete."
  • r ↔ (p^q) means "I am a sports athlete if and only if I like sports and I love playing ball games."

Tautologies, Contradiction, and Contingencies

  • Tautology is a proposition that is always true
  • Contradiction is a proposition that is always false.
  • Contingency is a proposition that is sometimes true and sometimes false.
  • Truth Table Construction: Number of rows = 2^n (where n is the number of variables)

Truth Table Construction Rules

  • Determine the number of rows (2^n).
  • List the independent variables.
  • Evaluate negations (¬).
  • Evaluate expressions within parentheses.
  • Evaluate expressions within square brackets.
  • Evaluate the whole expression.

Logical Equivalence

  • Two propositions, p and q, are logically equivalent (p ≡ q) if p ↔ q is a tautology
  • Example: ¬p v q = p → q
  • T (or 1) = Tautology (always true)
  • F (or 0) = Contradiction (always false)

Propositional Logic Laws

  • p^T = p (and True is the proposition itself)
  • "The sun is shining" AND "True" is equivalent to "The sun is shining”
  • pv F = p (or False is the proposition itself)
  • "The cat is black" OR "False" is equivalent to "The cat is black."
  • Domination Laws:
  • pv T = T (or True is always True)
  • Example: "The sky is blue" OR "True" is always "True."
  • p^ F = F (and False is always False)
  • Example: "The car is red" AND "False" is always "False."

Double Negation Law:

  • ¬¬p = p (not not p is p)
  • Example: "It is not not raining" is equivalent to "It is raining."

De Morgan's Laws:

  • ¬(p^q) = ¬p v ¬q (not (p and q) is not p or not q)
  • Example: "It is not (hot and humid)" is equivalent to "It is not hot or it is not humid."
  • ¬(pv q) = ¬p ^ ¬q (not (p or q) is not p and not q)
  • Example: "It is not (sunny or cloudy)" is equivalent to "It is not sunny and it is not cloudy.”

Distributive Laws:

  • p^ (qvr) = (p^q) v (p^ r) (and distributes over or)
  • Example: "I will eat (apples or oranges) and pears" is equivalent to "(I will eat apples and pears) or (I will eat oranges and pears)."
  • pv (q^r) = (pv q) ^ (pv r) (or distributes over and)
  • Example: "I will eat apples or (oranges and pears)" is equivalent to "(I will eat apples or oranges) and (I will eat apples or pears)."

Absorption Laws:

  • p^ (pvq) = p
  • Example: "I will eat apples and (apples or bananas)" is equivalent to "I will eat apples."
  • pv (p^q) = p
  • Example: "I will eat apples or (apples and bananas)" is equivalent to "I will eat apples."

Commutative Laws:

  • p^q=q^p (order doesn't matter for and)
  • pvq=qvp (order doesn't matter for or)
  • Associative Laws:
  • p^ (q^r) = (p^q) ^ r (grouping doesn't matter for and)
  • pv (qvr) = (p v q) v r (grouping doesn't matter for or)

Inverse Laws:

  • p^ ¬p = F (p and not p is always false)
  • pv ¬p = T (p or not p is always true)

Conditional Law:

  • p→ q = ¬pv q (if p then q is not p or q)

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

Use Quizgecko on...
Browser
Browser