I am having a lot of trouble figuring out how to close the paths of the Truth tree for the following argument:
∀x∀y∀z(Axy->Azx) Conclusion: (∃x∃yAxy ->∀x∀yAxy)
My attempt is as follows:
(1) ∀x∀y∀z(Axy->Azx)
(2) -(∃x∃yAxy ->∀x∀yAxy)
(3) ∃x∃yAxy (from line 2)
(4)-(∀x∀yAxy) (from line 2)
(5) ∃x-∀yAxy (Negative Quantifiers line 4)
(6) -∀yAay (Existential Instantiation (with a) line 5)
(7) ∃yAby (EI (with b) from line 3)
(8) Abc (EI (with c) from line 7)
From here on, I am not sure what to do:
- I don't understand how to deal with the negative quantifier in line 6, as well as how to 'selectively apply Universal Instantiation' to line 1, as well as the order in which to do this.
Any help would be appreciated. Thanks.