I have a few questions regarding free and bounded (dummy) variables. Let me lay out what I know. (Please tell me if this is incorrect) and then I'll show you what is confusing me.
Let P(x,y) mean that x likes y
P(x,y) x and y are both free variables because they don't have a quantifier.
(forAll(x))P(x,y) x is bound, but y is free.
(forSome(y))P(x,y) x is free, but y is bound.
(forSome(x))(forAll(y))P(x,y) x is bound and y is bound
I don't know if changing the order changes whether something is bound for example:
(forSome(y))(forAll(x))P(x,y) are both x and y still bound even though this doesn't mean that somebody likes everybody. I believe it to mean that For some y, everybody likes x.
Thanks for the help.