$$ \exists x \exists y \exists z (x\neq y \land x \neq z \land y \neq z \land P(x) \land P(y) \land P(z)) $$
I would translate the above sentence as, "There exist 3 different elements (x,y,z) for which P(x), P(y), and P(z) are true."
Does this mean at least 3 elements or exactly 3 elements? I think it's at least 3.
If so, how do I formally write exactly 3 elements?
$P$ holds for at least three elements: $$\exists x\exists y\exists z\ [x\ne y\land x\ne z\land y\ne z\land P(x)\land P(y)\land P(z)]$$ $P$ holds for at most three elements: $$\forall w\forall x\forall y\forall z\ [P(w)\land P(x)\land P(y)\land P(z)\to (w=x\lor w=y\lor w=z\lor x=y\lor x=z\lor y=z)]$$ $P$ holds for exactly three elements: $$\exists x\exists y\exists z\forall w\ [x\ne y\land x\ne z\land y\ne z\land (P(w)\leftrightarrow(w=x\lor w=y\lor w=z))]$$