Problem: Let p be "5 is odd" and q be "8 is even." Determine whether the conjunction p ∧ q is true or false.
Step 1: Evaluate statement p: Is 5 odd? Yes, so p is true.
p=True
Step 2: Evaluate statement q: Is 8 even? Yes, so q is true.
q=True
Step 3: A conjunction is true only when both parts are true. Since both p and q are true, the conjunction is true.
p∧q=True
Answer: The conjunction "5 is odd and 8 is even" is true.
Why It Matters
Conjunctions are fundamental in logic and programming. Conditional statements like "if you are 16 and you have a license, then you may drive" require both conditions to hold. Understanding how "and" works logically helps you evaluate truth in proofs, set theory, and computer code.
Common Mistakes
Mistake: Confusing conjunction (and) with disjunction (or). Students sometimes think a conjunction is true when at least one part is true.
Correction: A conjunction requires both statements to be true. If even one statement is false, the entire conjunction is false. The "at least one true" rule applies to disjunction (or), not conjunction.
Related Terms
Disjunction — Compound statement using "or" instead of "and"
Negation — Reverses the truth value of a statement
Truth Table — Chart showing all truth values of a compound statement