How can I get the negation of $\exists!$ (unique existential quantification)? if it's $\forall$, So if I wanna re-negate the last one, I'll get $\exists$ but it's not the same as what we started with! Did I do something wrong here?
For example: $$P : \exists! x\in \mathbb{R} \text{ such that } x^2 = 0$$ it means $\exists x \in \mathbb{R}\text{ such that } x^2 = 0\wedge x $ is unique, So the negation is $\forall x \in \mathbb{R}\space x^2 \ne 0 \vee x \text{ isn't unique}$ is this a false statement?
I think the best thing to do is unpack what $\exists !$ means.
$\exists ! x \phi(x)$ is shorthand for $$\exists x (\phi(x) \wedge \forall y (\phi(y) \rightarrow y=x))$$
so negating this gives $$\forall x(\neg \phi(x) \vee \exists y(\phi(y) \wedge y \ne x))$$ which is to say: either no $x$ satisfies $\phi$ or there is a $y$ distinct from $x$ which satisfies $\phi$.
This is of the form $\forall x (\neg A \vee B)$, which is the same as $\forall x(A \to B)$, so we could write $$\forall x(\phi(x) \to \exists y(\phi(y) \wedge y \ne x))$$ which is to say: if $x$ satisfies $\phi$ then there is a $y$ distinct from $x$ which does too. This is closer to how I'd think intuitively about the negation of $\exists!$.
Unfortunately there isn't a very succinct way of writing it.