The existentially-quantified conjunction $$∃x\;(P(x) \land Q(x))$$ means that there exists at least one $x$ such that $x$ is both $P$ and $Q.$ That is, some $P$ is a $Q.$
However, what do the existentially-quantified conditionals $$∃x\:(P(x) → Q) \tag1$$ and $$∃x\:\big(P(x) → Q(x)\big)\tag2$$ mean?
Background & Motivation:
- No one: ~∃x
- Someone: ∃x
- Everyone: ∀x
- Not everyone: ~∀x
∀xA(x): For every x, x is an A: = All x’s are A’s (/ or every x is an A)
∃xA(x): There exists (at least) an x such that it is an A:
= Some x is an A (/ or some x’s are A’s)
- Domain: D: {d1, d2, …, dk}: di: objects of the domain,
- Names: N: {c1, c2, …, ck}, ci: constants/names
Quantifying using the existential and universal quantifiers:
- None (n = 0): ~∃x
- Some (n ≥1): ∃x
- Every (n = k): ∀x
- Not every (n < k): ~∀x
where: n = # of items to be symbolized, where k: = # of items in the domain.
These quantifier terms can be used to symbolize the following:
- No A is a B: ~∃x(A(x) ^ B(x))
- Some A’s are B’s: ∃x(A(x) ^ B(x))
- All A’s are B’s: ∀x(A(x) --> B(x))
- Not all A’s are B’s: ~∀x(A(x) --> B(x))
and the following negations below:
- Some A’s are not B’s: ∃x(A(x) ^ ~B(x))
- All’s A’s are not B’s: ∀x(A(x) --> B(x))