I am a graduate teaching assistant at a university and I teach recitations for a discrete mathematics course for computer science majors. Right now they are studying propositional logic, and the recitation included the following question:
If $x$ represents an element of the set containing all people, and $y$ represents a certain time, and $P(x)$ is the statement that "$x$ is pleased by you", and $T(y)$ is the statement "the time is $y$", translate the following sentence into a logical statement using quantifiers and logical operations: "Everyone is pleased by you some of the time".
The solution manual I was given stated that the solution is
$$\forall x \; \exists y \; s.t. \; P(x)\wedge T(y)$$
which I didn't initially see a problem with. But then in class students came up with the solution
$$\forall x \; \exists y \; s.t. \; T(y)\Rightarrow P(x)$$
which also seems correct to me. Is it possible for an English sentence to have two logical representations that are not equivalent or is one of these logical statements not equivalent to the English sentence "Everyone is pleased by you some of the time"?
The manual is right, and the students' answer is wrong.
The two formulas are equivalent if we add an axiom that all times exist. However, this was not stated in the task.
Indeed, assume that some time does not exist, such as negative values of time (measured from the moment of the Bing Bang, the origin of the Universe), or complex values of time $a+ib$, etc. Taking $t=-1$, we have $\forall x: T(-1)\Rightarrow P(x)$: either the time is not $-1$ (which is always true for all possible times) or $x$ is pleased with you (which might not be true for any point in time).
However, with the solution provided by the manual this is not a problem: it requires that both the moment of time exist (say, be non-negative) and at this time $x$ be pleased with you.
More precisely, the task presupposes a binary function on the Cartesian product of some set of persons $X$ and some set of time moments $T$: whether a person $x$ is pleased by you at the moment $t$. Unless you presuppose that $T$ includes all numbers $y$, the students' solution is wrong.
Or, you can see this task as ambiguous: yes, this sentence's meaning can be different depending on how much knowledge of the real world you assume to be presupposed. Say, whether you assume it to be granted that all moments of time exist. Or, if you know a person who never likes you, then the required logical expression is just "FALSE" :)