I have the following formula in predicate logic:
∀x∀y∃z(R(x, z) ∧ ¬R(y, z))
I am not entirely sure what it states as for me it states a contradiction. Asuming it is a graph and Relation R(x,y) means that x is adjacent to y, this formula says that for all nodes in the graph they are adjacent to z and they aren't adjacent to z, or do I have it wrong and one should make the distinguishment between x and y, meaning that for a some nodes x in the graph they are adjacent to z and for other nodes y they aren't adjacent to z?
Thank youu:)
Generally $$(A \land \neg B) = \neg(\neg A \lor B)= \neg (A \Rightarrow B)$$ So you have $$\forall x \forall y \exists z \left( \neg(R(x,z) \Rightarrow R(y,z)) \right)$$