-1

I'm trying to express $∃!x : (P(x))$ in a different way. i want to know how to express it with the other quantifiers.

Here is what I have tried:

$∃!x(P(x)) = ∃x : (P(x) \wedge ∀y, y≠x (\neg P(y)))$

What I'm trying to say is that there exists only one $x$ such that $x$ is true and for all $y$ that are not $x$, $y$ is false. $x$ and $y$ share the same universe of discourse. I'm new to representing this mathematically. Any help is appreciated.

3 Answers3

0

$$\neg\left(\exists x: P(x) \right)$$ is equivalent to $$\forall x: \neg P(x)$$

Is this what you wanted to show?

Matthias
  • 2,176
0

First, there exists some $x$ such that $P(x)$:

$\exists x P(x)$

Then if there is some other $y$ such that $P(y)$, it must be the case that $y = x$:

$\exists x P(x) \land \forall y (P(y) \implies y = x)$

user4894
  • 3,069
0

$$∃!x(P(x)) = [∃x P(x)] \ \wedge ∀x\ \forall y [P(x) \wedge P(y) \implies x=y\ ]. $$ Here the first clause says there is at least one, while the second says there is at most one, $x$ for which $P(x)$ is true.

coffeemath
  • 30,190
  • 2
  • 34
  • 53