Example: Convert this formula to Skolem normal form
$(\exists x )(\forall y)(\exists u)(\exists v)(\forall w)(P(x,y,z)\lor R(x,u)\lor Q(u,v,w))$
Solution:
$(\forall y )(\forall z)(\exists u)(\exists v)(\forall w)(P(c,y,z)\lor R(c,u)\lor Q(u,v,w))$
$(\forall y )(\forall z)(\forall w)(P(c,y,z)\lor R(c,f(y,z))\lor Q(f(y,z),g(y,z),w))$
This is one of the examples, which we had in the lecture with solution, which is not really clear to me. I understand the algorithm and the definition of SNF, but I do not understand the operation in the first step.
Why there is substitution of variable 'x' for 'c'?
Why we cannot do the same with $(\exists x)$ as with the other "exists" quantifiers as we do in the second step?