Trying to learn about predicate formulas. I was told that (let E and F be predicates and Q be a quantifier ∃ or ∀)
E ∧ QxF is logically equivalent to Qx(E∧F), if x is not free in E
So let's take the formula below:
P(x) ∧ ∀xQ(x) is logically equivalent to ∀x(P(x)∧Q(x))
Where P and Q are predicates. I was told these two are logically equivalent only if P(x) is bound. So let's bound P(x) with a ∃.
Let the domain be natural numbers. Let Q(x) : x>=0 and P(x) : x/2 is even number. So far so good?
Q(x) is bound, and says for all x, x>= 0 which is true. P(x) is bound by ∃ and says there exists an integer in natural numbers which is even when divided by 2, which is true (12/2 = 6).
My question is, the x in P(x) was bound with ∃, but when it was moved into ∀x(P(x)∧Q(x)), it is now bound by ∀, which makes the statement not true, right? Because not all x are even when divided by 2?
Question #1) So how is P(x) ∧ ∀xQ(x) logically equivalent to ∀x(P(x)∧Q(x)) when P(x) is bound?
Question #2) I'm going to try to prove that P(x) ∧ ∀xQ(x) is NOT logically equivalent to ∀x(P(x)∧Q(x)) when P(x) is free.
Let P(x) : x/2 is even number and make it free (not bound by ∃ and ∀). Let Q(x) : x>= 0.
To prove these two are not logically equivalent, I will take an x which makes P(x) ∧ ∀xQ(x) true and ∀x(P(x)∧Q(x)) false (am I on the right track)?
Take x = 12. P(x) ∧ ∀xQ(x) is true because 12 divided by 2 is even, and 12>=0. But ∀x(P(x)∧Q(x)) is false because it states that ∀x(P(x) so even though 12 holds true, it is not true for 11.
Is that a valid proof to show that P(x) ∧ ∀xQ(x) is NOT logically equivalent to ∀x(P(x)∧Q(x)) when P(x) is free?
∀x(P(x)∧Q(x)), it is still bound by the quantifier which it was bound by before moving it inside (i.e. the ∃ quantifier, in my example when I said "So let's bound P(x) with a ∃")? – user2719875 Aug 06 '17 at 20:57P(x) ∧ ∀xQ(x)is merely looking for trouble. – Did Aug 06 '17 at 21:15∃x(P(x)) ∨ ∀x(Q(x))logically equivalent to∃x( P(x) ∨ ∀y(Q(y) )? Which is reduced to∃x(P(x)) ∨ (∀y(Q(y)? – user2719875 Aug 06 '17 at 21:42