Firstly, excuse my simplicity in describing the title; I couldn't find a proper title that could explain what I am confused about. The example looks at how we express the following statements in predicates and quantifiers,
- “Every student in this class has visited Mexico”
- “Some student in this class has visited Mexico”
The first statement is fairly easy. If we take $x$ as the domain of people, $S(x)=$ '$\text{x is a student}$', and $M(x)=$ '$\text{x visited Mexico}$'. We have $\forall x(S(x) \rightarrow M(x))$. Its clear that it wouldn't work if we had it like this $\forall x(S(x) \land M(x))$. Because that would mean that all the domain of $x$ is $S(x)$ but that isn't true.
Now, the confusion comes when we the second statement comes in. The answer is $\exists x(S(x) \land M(x))$ but I don't see how this representation $\exists x(S(x) \rightarrow M(x))$ can be wrong.