Skip to content
Foundation·F10

Existential quantifier

There is an x: prove it with a witness, use it via an arbitrary one.

Introduction: any witness satisfying proves the existential. Elimination, stated with the universal quantifier and implication: if follows from for arbitrary , then follows from bare existence.
Part of the logical framework beneath ZFC (classical first-order logic with equality): taken as given rather than proven, it belongs to the language the set-theoretic axioms are stated in.

Remarks

Classically the existential is expressible through the universal: , "not everything fails ", with negation and, for the right-to-left direction, excluded middle. Intuitionistically is strictly stronger than : it demands an actual witness. Most ZFC axioms are existentials: pairing, union, power set, infinity, separation and replacement all assert that some set exists. In Lean, Exists is an inductive proposition whose single constructor Exists.intro packages a witness with its proof.

Used by