Propositions
A proposition is a declarative statement that is either true (T) or false (F), but not both.
Examples
- "2 + 2 = 4" is a proposition (true)
- "The sky is green" is a proposition (false)
- "What time is it?" is NOT a proposition (question)
- "" is NOT a proposition (depends on )
Logical Connectives
| Symbol | Name | Meaning |
|---|---|---|
| Negation | NOT | |
| Conjunction | AND | |
| Disjunction | OR | |
| Exclusive OR | XOR | |
| Implication | IF...THEN | |
| Biconditional | IF AND ONLY IF |
Truth Tables
Negation ()
| T | F |
| F | T |
Conjunction ()
| T | T | T |
| T | F | F |
| F | T | F |
| F | F | F |
Disjunction ()
| T | T | T |
| T | F | T |
| F | T | T |
| F | F | F |
Exclusive OR ()
| T | T | F |
| T | F | T |
| F | T | T |
| F | F | F |
Implication ()
| T | T | T |
| T | F | F |
| F | T | T |
| F | F | T |
Note: An implication is false only when the hypothesis is true and the conclusion is false.
Biconditional ()
| T | T | T |
| T | F | F |
| F | T | F |
| F | F | T |
Operator Precedence
From highest to lowest:
- (negation)
- (conjunction)
- (disjunction)
- (implication)
- (biconditional)
Compound Propositions
Example
Let : "It is raining" and : "I carry an umbrella"
- : "It is raining AND I carry an umbrella"
- : "IF it is raining, THEN I carry an umbrella"
- : "It is NOT raining OR I carry an umbrella"
Tautology, Contradiction, Contingency
- Tautology: Always true (e.g., )
- Contradiction: Always false (e.g., )
- Contingency: Sometimes true, sometimes false
Logical Equivalence
Two propositions are logically equivalent () if they have the same truth values:
Key Equivalences
Converse, Inverse, Contrapositive
For the implication :
| Form | Statement | Equivalent to Original? |
|---|---|---|
| Original | — | |
| Converse | No | |
| Inverse | No | |
| Contrapositive | Yes |