I have a question regarding the use of the $ \exists $ quantifier when trying to signify explicit quantities.
Consider
$F:$ the set of all fruits
$A(x):$ x is an apple
$R(x):$ x is rotten
If I wanted to express 'One apple is rotten' would this be logically sound?
$\exists x \in F, \forall y \in F, x \neq y \wedge R(x) \wedge \neg R(y)$
Also how would the above be different from:
$\exists x \in F, \forall y \in F, x \neq y \Rightarrow R(x) \wedge \neg R(y)$
Thanks!
As Asaf pointed out, there are a couple of flaws with how you've formulated your expressions. The following should help:
"At least one apple is rotten." translates to "There is a fruit (call it $x$) that is both an apple and rotten.": $$ \exists x \in F~~~[A(x) \land R(x)] $$
"Exactly one apple is rotten." translates to "There is a particular type of fruit (call it $x$) such that for any other fruit (call it $y$), the other fruit can only be an apple and be rotten if and only if the other fruit was actually the particular type of fruit.": $$ \exists x \in F~~~\forall y \in F,~~[A(y) \land R(y) \iff x=y] $$