Logic is easier when it is about people's natural instincts. Consider:
- Every person in this room that is a woman has long hair:
$$\forall p \in \mathrm{Room} \; (\mathrm{Woman}(p) \Rightarrow \mathrm{HasLongHair}(p))$$
- Every person in this room is a woman and has long hair:
$$\forall p \in \mathrm{Room} \; (\mathrm{Woman}(p) \land \mathrm{HasLongHair}(p))$$
Do you think there is a difference between these two statements?
Supplemental: The question you asked is a common one among students of mathematics. As a rule of thumb, you should use $\exists$ with $\land$ and you should use $\forall$ with $\Rightarrow$. For instance:
- Every matrix $M$ whose determinant is non-zero has an inverse:
$$\forall M (\det M \neq 0 \Rightarrow \exists N (\text{$N$ is inverse of $M$)}$$
- There exists an odd number $x$ which is greater than $42$
$$\exists n (\text{$x$ is odd}) \land x > 42$$
Let us see what goes wrong if we use the wrong combination. The formula
$$\forall M (\det M \neq 0 \land \exists N (\text{$N$ is inverse of $M$)}$$
says: every matrix $M$ has a non-zero determinant and an inverse. This is obviously false, as the zero matrix is a counter-example.
The formula
$$\exists n (\text{$x$ is odd}) \Rightarrow x > 42$$
says: there is a number $x$ such that if $x$ is odd then $x > 42$. An example of such a number is $x = 6$. This is not what was intended.