Everyone who makes an A aces some final exam
Is this
∀x,∃y: makes(x, A) => aces(x, y)
the same as
∀x: makes(x, A) => ∃y: aces(x, y)
where x represents everyone and y represents exams.
Does the position of ∃ matter?
Everyone who makes an A aces some final exam
Is this
∀x,∃y: makes(x, A) => aces(x, y)
the same as
∀x: makes(x, A) => ∃y: aces(x, y)
where x represents everyone and y represents exams.
Does the position of ∃ matter?
No, they are equivalent.
This is part of a theorem called "Prenex normal form".