I'm trying to understand first-order-logic and have this simple question.
Given the following predicates:
$Thing(t)$, which states that $t$ is a thing;
$Word(w)$, which states that $w$ is a word; and
$HurtsYouMoreThan(x,y)$, which states that $x$ hurts you more than $y$,
I need to create a first-order-logic statement that says "There is nothing that hurts you more than words do.
It will help to re-word it:
In other words:
$$(\forall{w})(\forall{t}){(\operatorname{word}(w)\land\operatorname{thing}(t))\to\lnot\operatorname{HurtsYouMoreThan}(t,w)}$$