How to write negation of following statements in words?
1. Any integer is either positive or negative.
2. There is a child who is loved by everyone.
3. The connector is loose or the machine is unplugged.
4. No politician cheat voters.
And how to write negation of following statement in symbols?
5. (∀x)(∃y)(x^2 <y)
For 3rd one my answer is "The connector is not loose and the machine is not unplugged" and for 4th one my answer is "politician cheat voters". I am not sure...Are they correct?
Let me give this a go. The first one is trickiest because of the "either-or" construction.
Indeed, it is a rule that $(\neg \forall x)(\phi) = (\exists x)(\neg \phi)$ where $\phi$ is a proposition. This should be intuitively clear: if $\phi$ holds for not all $x$, then there must be an $x$ such that $\phi$ does not hold. It is a good exercise to write your original statements in formal symbols and then negate them. For example:
This seems a bit silly, but your either-or construction forces me to write it like this. If the original statement were
"Any integer is positive or negative",
then I could have written
$(\forall x \in \mathbb{Z})(x > 0 \vee x <0),$
which is equivalent in this case because being positive and being negative are already mutually exclusive. The negation of 1. in formal symbols is
\begin{eqnarray*} \neg(\forall x \in \mathbb{Z})((x > 0 \wedge x \nless 0) \vee (x < 0 \wedge x \ngtr 0)) & = & \\ (\neg \forall x \in \mathbb{Z})((x > 0 \wedge x \nless 0) \vee (x < 0 \wedge x \ngtr 0)) & = & \\ (\exists x \in \mathbb{Z})\neg((x > 0 \wedge x \nless 0) \vee (x < 0 \wedge x \ngtr 0)) & = & \\ (\exists x \in \mathbb{Z})(\neg(x > 0 \wedge x \nless 0) \wedge \neg(x < 0 \wedge x \ngtr 0)) & = & \\ (\exists x \in \mathbb{Z})((\neg(x > 0) \vee \neg(x \nless 0)) \wedge (\neg(x < 0) \vee \neg(x \ngtr 0))) & = & \\ (\exists x \in \mathbb{Z})(x \ngtr 0 \vee x < 0) \wedge (x \nless 0 \vee x > 0) \end{eqnarray*}
With one more step you can that this is the negation of statement 1. in words. Use the rules of passage.