2

Prove the following statement;

$$\forall a,b \in R (\forall \epsilon > 0 (a \le b + \epsilon) \rightarrow a \le b)$$

I can't see how this is true

This means that I can pick a number for all three variables and this statement should hold, but

Let $\epsilon$ = 100

let b = 0

let a = 1

then $(a \le b + \epsilon)$ holds but $a \le b$ doesn't.

This question is given right after a true/false section, so I'm assuming i'm somehow missing something, and there is a proof for this?? But, right now my reasoning seems sounds, to me.

Osuynonma
  • 834

4 Answers4

3

The key is that it needs to be true for ALL $\epsilon >0$. if $\epsilon < 1/2$ for example and b = 0, a = 1 it is not true that $a <= b + \epsilon$.

fleablood
  • 130,341
3

You may be misinterpreting the statement due to ambiguous parenthesization. It is almost certainly meant to be interpreted

$$\forall a, b \in \mathbb R.\ ((\forall \epsilon > 0.\ a \le b + \epsilon) \rightarrow a \le b).$$

The important thing is that the scope of the quantification of $\epsilon$ should stop before the $\rightarrow$. If you think about the difference between $\forall \epsilon. (p \rightarrow q)$ and $(\forall \epsilon. p) \rightarrow q$, you will see why your reasoning doesn’t apply to the latter.

Why did I infer that the statement should be interpreted this way? Just because this way the statement is true. Notational conventions seem to vary here, and depending on the conventions in use, it’s possible that the statement may be written incorrectly.

1

The statement requires that the inequality holds FOR ANY epsilon greater than 0. So if epsilon is less than $1$ this statement does not hold in the case that you mentioned.

This statement can be proven by contradiction is you assume $a\leq b+\epsilon$ and $a>b$.

1

The example that you considered a counterexample to the proposition is wrong; for, your choice of $a$ and $b$ does not satisfy the hypothesis of the proposition. If $a:=1$ and if $b:=0$, then $a > b$, so $a > b + \varepsilon$ for some $\varepsilon > 0$, say $\varepsilon := \frac{1}{2}$; but the proposition only considers pairs of $a,b$ such that $a \leq b + \varepsilon$ for all $\varepsilon > 0$.

Yes
  • 20,910