I'm gonna study following lemma:
$\Sigma \vdash \theta \Longleftrightarrow \Sigma \cup \{\neg \theta\} \vdash \perp$, where $\perp$ is a always-false sentence.
In example 1:
$\vdash[(\forall x)P(x)] \rightarrow [(\exists x)P(x)]$
We're gonna show:
$[(\forall x)P(x)] \vee \neg [(\exists x)P(x)] \vdash \perp$
So:
$[(\forall x)P(x)] \vee \neg[(\exists x)P(x)] \vdash \perp$
$[(\forall x)P(x)] \vee [(\forall x) \neg P(x)] \vdash \perp$
$(\forall x)[P(x) \vee \neg P(x)] \vdash \perp$
$True \vdash \perp$
As $True \rightarrow False$ is false!...
And the problem's raised from example 2:
If I'm gonna show:
$[(\forall x)(\forall y)P(x,y)] \vdash [(\forall y)(\forall z)P(z,y)]$
It's the same as:
$\vdash [(\forall x)(\forall y)P(x,y)] \rightarrow [(\forall y)(\forall z)P(z,y)]$
So:
$\vdash [(\forall x)(\forall y)P(x,y)] \vee \neg [(\forall y)(\forall z)P(z,y)]$
$\vdash [(\forall x)(\forall y)P(x,y)] \vee [(\exists y)(\exists z) \neg P(z,y)]$
I'm stuck here...
So, I'm using the lemma wrong. What's wrong with my utilization?