The following predicate symbols are given:
$J(x)$ translates to "$x$ is a serious jogger";
$R(x)$ translates to "$x$ is a race";
$T(x,y)$ translates to "$x$ takes part in race $y$".
How do we translate:
"One can only be a serious jogger if one takes part in some race"
I am having difficulty translating the word "one" which appears twice in the sentence above. Critique me on the following two efforts, i.e. how do they translate differently.
$\forall x \, (J(x) \to \exists y \, (R(y) \land T(x,y)))$
vs
$\exists x \,\exists y \, (J(x) \land R(y) \land T(x,y))$