I came across two statements which highlight the my problem with the keyword 'any' in mathematical english.
The statement "Anyone who eats any pumpkin is a nutrition fanatic." translates to
$\forall x ((\exists y (PUMPKIN(y) \land EAT(x,y))) \rightarrow FANATIC(x))$
another statement "Anyone who buys any pumpkin either carves it or eats it." translates to
$\forall x \forall y (PUMPKIN(y) \land BUY(x,y) \rightarrow CARVE(x,y) \vee EAT(x,y))$
The first one uses existential quantifier for 'any' while the latter uses a universal quantifier.
If someone could guide me how the use of existential and universal quantifiers work here.