Contact Hours: 60 | Full Marks: 100 (ESE=70/CCA=30)
**Quantification** is the process of translating categorical and singular propositions into the language of Predicate Logic (or First-Order Logic), which can express internal structure not possible with Propositional Logic. It uses **quantifiers** and **predicates**.
| Form | Example | Symbolization (Formula) |
|---|---|---|
| A (All S is P) | All dogs are mammals. (Dx, Mx) | (x) (Dx → Mx) |
| E (No S is P) | No fish are birds. (Fx, Bx) | (x) (Fx → ¬Bx) (or ¬(∃x) (Fx ⋅ Bx)) |
| I (Some S is P) | Some flowers are red. (Fx, Rx) | (∃x) (Fx ⋅ Rx) |
| O (Some S is not P) | Some humans are not kind. (Hx, Kx) | (∃x) (Hx ⋅ ¬Kx) |
Symbolization Tip: A/E use the Arrow (→); I/O use the Dot (⋅)
In addition to the Nineteen Rules, four new rules are required for proofs involving quantifiers. These rules allow moving between quantified statements and instantiated (singular) statements.
From a universally quantified statement, you can deduce any statement that results from replacing the variable with an **individual constant (a, b, c...)**.
Formula: (x) (Fx) / ∴ Fa
From an instantiated statement about an **arbitrarily chosen** individual (a specific variable *y* that is not tied to any premise), you can deduce the corresponding universally quantified statement.
Formula: Fy / ∴ (x) (Fx) (Requires strict constraints on *y*)
From an existentially quantified statement, you can deduce an instantiated statement using an **individual constant (a, b, c...) that has not occurred previously** in the proof.
Formula: (∃x) (Fx) / ∴ Fg (where 'g' is new)
From an instantiated statement about a **specific** individual, you can deduce the corresponding existentially quantified statement.
Formula: Fa / ∴ (∃x) (Fx)
Proofs in Predicate Logic combine the Nineteen Rules (for propositional steps) with the four Rules of Quantification (for handling quantifiers).
Steps in a Quantified Proof:
Common Mistake: The Instantiation Rule Constraint
The biggest pitfall is violating the **EI** constraint: **The constant used in EI must be NEW.** Also, violate the **UG** constraint: You cannot generalize from a constant introduced by **EI** if that constant appears in a premise line or in the line you are trying to generalize from (if the line depends on a premise containing that constant).
Master the four standard form **Symbolizations** (A, E, I, O) and the proper application constraints, particularly for **EI** (new constant) and **UG** (arbitrary individual/no reliance on existential constants).