Skolemisation
Skolemisation is a technique in classical first-order logic for eliminating existential quantifiers from a formula by replacing them with Skolem terms. The resulting formula is designed to preserve satisfiability, making the form convenient for automated theorem proving and conversion to clausal form.
The standard procedure requires the formula to be transformed into an equivalent prenex form with all quantifiers
Example: ∃x ∀y P(x,y) becomes ∀y P(f(y), y). If ∃x P(x), this becomes P(c).
Skolemisation preserves satisfiability: a set of formulas is satisfiable iff its Skolemised form is satisfiable. It
Historically named after the Norwegian logician Thoralf Skolem, the technique has become standard in first-order logic