A quantifier-free formula in FOL is simply a formula:
-that contains no quantifiers.
-it possibly has free variables.
How is such a formula interpreted?
My understanding is that if we're interested in satisfiability, we agree to take the existential closure of the formula.
Now consider a formula in the theory of reals which asks if the following statement is satisfiable:
$\exists x. ax^2 + bx + c=0$
According to the book "The Calculus of Computation" by Bradley and Manna, without quantifiers, free variables and constants play the same role. See for instance the example 3.1, p.72 in the book. A way to see this is to replace a quantifier-free formula by its existential closure and then replace the existentially quantified variables by fresh Skolem constants. So, then the above formula is equivalent to the following quantifier-free formula:
$ax^2 + bx + c=0$
Clearly this doesn't count as "quantifier elimination" at least not from the point of view of solving this quadratic! What am I missing?
OK, Leo provides a very nice answer here https://stackoverflow.com/questions/16762337/eliminating-forall-using-unsat?rq=1 but the short answer is that the two formulae above (the first one with the existential and the 2nd one with the Skolem constants) are not equivalent but equisatisfiable. QE produces equivalent formulae, but Skolemization doesn't therefore it is not considered QE.