LOGIC

LOGIC.DAY

Where formal reasoning meets the street

MODUS PONENS

P1If it rains → the street is wet
P2It rains
The street is wet

"If P then Q. P. Therefore Q." — The most fundamental rule of inference, tagged on every wall of rational thought.

∧ ∨

TRUTH TABLE

PQP ∧ QP ∨ QP → Q
TTTTT
TFFTF
FTFTT
FFFFT

"Every combination. Every possibility. The truth maps itself out right in front of you."

¬

DE MORGAN'S LAWS

¬(P ∧ Q) ≡ (¬P ∨ ¬Q)
¬(P ∨ Q) ≡ (¬P ∧ ¬Q)

"Negate the whole, flip the operator, negate the parts. The duality written on every overpass."

∀ ∃

QUANTIFIERS

Universal "For all x" ∀x(P(x) → Q(x))
Existential "There exists x" ∃x(P(x) ∧ Q(x))

"How much of the world does your claim cover? All of it, or just a piece?"

THEREFORE

Every premise demands a conclusion. The left side poses the structure — here, we trace the inference.

OPERATORS

AND Conjunction
OR Disjunction
¬ NOT Negation
IMPLIES Conditional
IFF Biconditional
THEREFORE Conclusion

PROOF PLAYGROUND

P ∧ Q

LOGICAL FALLACIES

Affirming the Consequent

P → Q, Q ⊬ P

"The street is wet, therefore it rained" — ignoring sprinklers, floods, broken pipes.

Denying the Antecedent

P → Q, ¬P ⊬ ¬Q

"It didn't rain, so the street can't be wet" — a conclusion that doesn't follow.

Undistributed Middle

All A are B, All C are B ⊬ All A are C

"All cats are animals. All dogs are animals. Therefore all cats are dogs." — The middle term connects nothing.

AXIOMS OF THE STREET

I

A proposition is either true or false. There is no middle ground.

P ∨ ¬P
II

Nothing can be both true and false at the same time.

¬(P ∧ ¬P)
III

If P implies Q, and Q implies R, then P implies R.

(P → Q) ∧ (Q → R) → (P → R)