I am trying to solve the following problem:
Let S(x) be the predicate “x is a student,” F(x) the predicate “x is a faculty member,” and A(x, y) the predicate “x has asked y a question,” where the domain consists of all people associated with your school. Use quantifiers to express each of these statements. f ) Some student has asked every faculty member a question.
What is the difference between $\forall y(F(y)\to\exists x(S(x)\land A(x,y)))$ and $\exists x (S(x) \land \forall y(F(y)\to A(x,y)))$? A'int they same?
Hint: Just read it out loud. The first says (simplified): "For every faculty member $y$, there is a student that asked $y$ a question". The second formula reads "There is a student that asked every faculty member a question".