I am trying to negate the following english statement: All manatees are swimming.
m(x): x is a manatee
s(x): x is swimming
$\therefore (\forall x)(m(x) \land s(x))$
\begin{align*} \neg [(\forall x)(m(x) \land s(x))] &\equiv \\ (\exists x) \neg(m(x) \land s(x)) &\equiv & \textbf{DeMorgan's Law}\\ \boxed{(\exists x) (\neg m(x) \lor \neg s(x))} \end{align*}
The negation: Some sea-creatures are not manatees or not swimming.
My questions are:
Is my negation correct?
Can I infer that the domain is "sea-creatures" or do I need to say "there are things"**?
Your translation of the original statement is false. It should be $\forall x:m(x)\to s(x)$ or $\forall x:\neg m(x)\lor s(x)$. Then its negation is $\exists x:m(x)\land\neg s(x)$, or "there exists a manatee that is not swimming".