Hi,
If I have a formula like:
FAx FAy (Ez(!A(x,z) v !A(y,z)) v B(x,y))
(FA = For All / E = Exists)
The rules of skolemisation say that:
- if E is outside FA replace with a constant or
- if E is inside FA replace by a new function contain all the vars from outside the FA as arguments.
So what do I do in this case? Can I just drop the Exists quantifier or do I replace it with a constant?
Thanks!