Types of Categorical Propositions
Categorical propositions are statements about classes of objects. They make claims about whether members of one class belong (or don't belong) to another class. There are exactly four types, traditionally labeled A, E, I, and O. Translating them into predicate logic lets you work with their structure precisely, but there's a critical pattern to notice: universals use conditionals (), while particulars use conjunctions (). Getting that distinction right is the single most important thing in this section.
Universal Propositions
A (Universal Affirmative): "All S are P"
Symbolized as:
This says: for every object , if is an S, then is a P. The conditional is doing important work here. You're not claiming everything in the universe is an S or a P. You're only saying that among things that are S, every one of them is also P.
- Example: "All cats are mammals" becomes
- Read it as: for any , if is a cat, then is a mammal
E (Universal Negative): "No S are P"
Symbolized as:
This says: for every object , if is an S, then is not a P. The structure is the same as the A proposition, but with a negation on the predicate.
- Example: "No dogs are reptiles" becomes
- Read it as: for any , if is a dog, then is not a reptile
Particular Propositions
I (Particular Affirmative): "Some S are P"
Symbolized as:
This says: there exists at least one object such that is both an S and a P. Notice the switch from to . You need conjunction here because you're asserting that some specific thing actually is both S and P, not just setting up a hypothetical.
- Example: "Some birds can fly" becomes
- Read it as: there is at least one that is a bird and can fly
O (Particular Negative): "Some S are not P"
Symbolized as:
This says: there exists at least one object such that is an S but is not a P. Same structure as the I proposition, but with a negation on the predicate.
- Example: "Some animals are not mammals" becomes
- Read it as: there is at least one that is an animal and is not a mammal
.svg.png)
Why Universals Use and Particulars Use
This is the most common mistake students make, so it's worth understanding why the connectives differ.
If you tried to translate "All cats are mammals" as , you'd be saying everything in the entire universe is both a cat and a mammal. That's wildly wrong. The conditional restricts your claim: you're only talking about things that happen to be cats.
If you tried to translate "Some birds can fly" as , you'd get a statement that's true whenever there exists anything that isn't a bird (since a conditional with a false antecedent is true). That would make the sentence trivially true and meaningless. The conjunction forces the thing to actually be a bird and also fly.
Quick reference:
- A: — "All S are P"
- E: — "No S are P"
- I: — "Some S are P"
- O: — "Some S are not P"
Quantifiers and Logical Connectives

Quantifiers
The universal quantifier expresses that something holds for all members of the domain. It's read as "for all" or "for every." When you write , you're claiming every object in the domain has property P.
The existential quantifier expresses that something holds for at least one member of the domain. It's read as "there exists" or "for some." When you write , you're claiming at least one object in the domain has property P.
Both quantifiers are followed by a variable (usually ) that gets "bound" by the quantifier. That variable then appears inside the parentheses that follow, referring back to the same object.
Logical Connectives
Conditional (): Expresses an if-then relationship. asserts that whenever is true, must also be true. It says nothing about cases where is false. "If it is raining, then the ground is wet" only makes a claim about rainy situations.
Conjunction (): Asserts that both parts are true simultaneously. is true only when and are both true.
Negation (): Flips the truth value. is true when is false, and false when is true.
Biconditional (): Expresses logical equivalence. asserts that and always share the same truth value. "A figure is a square if and only if it is a rectangle with four equal sides" means being a square and being an equal-sided rectangle are the same condition. You can think of it as a conditional that works in both directions.