1

I must write a proof template for the uniqueness statement of the form $\exists ! x \in U, P(x)$. I thought about eliminating the uniqueness symbol and then combining other proof templates to outline a proof of the new statement. So I thought about the following 2 possible solutions:

First proof template:

I know that $\exists ! x \in U, P(x) \iff (\exists x, P(x)) \land (\forall x, \forall y, [(P(x) \land P(y)) \Rightarrow x = y])$.

Read this statement as "There exists a unique number $x$ in the infinite universe $U$" is equivalent to "There exists an $x$, such that $P(x)$ is true AND for all x and for all y, if P(x) and P(y) is true THEN x = y".

Choose $x_0$ to be a fixed number in U.

Let $x_1$ be a fixed, but arbitrary number in U.

Let $y_0$ be a fixed, but arbitrary number in U.

Proof (Direct Proof)

Assume $P(x) \land P(y)$. I must prove $x_1=y_0$.

The problem is that I am not sure if this proof template is correct or not.

Second proof template:

I also thought about writing $\exists ! x \in U, P(x)$ as $\forall x \in U, \forall y \in U, P(x) \land P(y) \Rightarrow x = y$.

Let $x_0$ be a fixed, but arbitrary number in U.

Let $y_0$ be a fixed, but arbitrary number in U.

Assume $P(x_0) \land P(y_0)$. Prove $x_0=y_0$.

Would this be a better proof template than the first one?

Concrete example using the second proof template.

Here is the exercise and how I tried to solve it:

$\exists ! x \in \mathbb{R}, 3x+5=0$.

This statement is equivalent to $\forall x \in \mathbb{R}, \forall y \in \mathbb{R}, P(x) \land P(y) \Rightarrow x = y$.

Let $x_0$ be a fixed, but arbitrary number in \mathbb{R}.

Let $y_0$ be a fixed, but arbitrary number in \mathbb{R}.

$3x_0+5=0$ so $x_0=-2$.

$3y_0+5=0$ so $y_0=-2$.

$x_0=y_0$, as needed, prooving uniqueness.

The problem that I have here is that I am not sure if I implemented it right. I know that I can't choose 2 arbitrary variables, I can't say $x_0=-2$ for example, but I don't know how to choose the values for the variables in order to show that they are equal.

David
  • 224
  • 1
  • 7
  • 1
  • What's the difference between "a fixed, but arbitrary number" and "an arbitrary number"? $\quad$ 2. What is the function of that first comma after the symbol? $\quad$ 3. Your template at the moment isn't cohesive; maybe give a concrete example instead?
  • – ryang Jul 27 '22 at 15:30
  • I think you mean what's the difference between 'a fixed, but arbitrary number" and "a fixed number" and the difference is that a fixed but arbitrary number must be looked at as a normal variable since $U$ in this case is seen as an infinite set while "a fixed number" is a number that you can choose that is in that infinite set, that doesn't have to be a variable. 2. Nothing, it's just a comma separating the quantifier from the $P(x)$ statement, it has the same function that the first comma does.
  • – David Jul 27 '22 at 15:43
  • I hope my alternative solution adds more clarity
  • – David Jul 27 '22 at 15:47