2

Where did I go wrong? The text I'm using gave a different proof. Help.

Attempt:

Given any $\epsilon>0$. Let $\delta=\epsilon$ so that if $\vert x-y\vert<\delta$, then \begin{align} \vert x-y\vert<\epsilon &\Leftrightarrow \frac{\vert x-y\vert}{\vert \sqrt{x}+\sqrt{y}\vert}<\vert x-y\vert<\epsilon\\ &\Leftrightarrow \frac{\vert x-y\vert}{\vert \sqrt{x}+\sqrt{y}\vert}<\epsilon\\ &\Leftrightarrow \vert \sqrt{x}-\sqrt{y}\vert<\epsilon,\quad\text{since}\quad \vert\sqrt{x}-\sqrt{y}\vert=\frac{\vert x-y\vert}{\vert \sqrt{x}+\sqrt{y}\vert}\end{align}

  • 1
    The very beginning is wrong (and also the whole continuation) : it must be that given any $;\epsilon>0;$ , you must prove the existence of $;\delta>0;$ , such that whenever $;|x-y|<\delta;$ , then $;|f(x)-f(y)|<\epsilon;$ . The logical arguments are of the upmost importance here. – DonAntonio Jul 14 '18 at 12:12
  • So $\delta$ cannot depend on $\epsilon$ is your point? – TheLast Cipher Jul 14 '18 at 12:15
  • Wait, I think that didn't make sense. WHat do you mean? – TheLast Cipher Jul 14 '18 at 12:16
  • 1
    On the contrary: it must depend on $;\epsilon;$ , not on particular $;x,y;$ . Observe the logic followed in the comment above, which is the definition, and compare with your logic...! – DonAntonio Jul 14 '18 at 12:16
  • What about this new starting sentence? – TheLast Cipher Jul 14 '18 at 12:21
  • @DonAntonio Actually, I think the asker has done this. They've chosen $\delta = \varepsilon$; it doesn't vary on particular $x$ or $y$ at all. – Theo Bendit Jul 14 '18 at 12:21
  • This may be useful https://math.stackexchange.com/questions/569928/sqrt-x-is-uniformly-continuous – Yagger Jul 14 '18 at 12:23

3 Answers3

3

The main issue here, from my perspective, is that $|x - y| < \varepsilon$ need not imply $\frac{|x - y|}{|\sqrt{x} + \sqrt{y}|} < \varepsilon.$ For example, take $x = 0.01$, $y = 0$, and $\varepsilon = 0.02$.

Theo Bendit
  • 50,900
2

Your first step should definitely not be to assume that $|\sqrt{x} - \sqrt{y}| < \epsilon$. This is what you are trying to prove!! The definition of uniform continuity:

A function $f:U\to \mathbb{R}$, $U\subseteq \mathbb{R}$, is uniformly continuous if for any $\epsilon > 0$ and any $x,y\in U$, there exists $\delta > 0$ such that whenever $|x - y| < \delta$, $|f(x) - f(y)| < \epsilon$.

You're trying to show something about every $\epsilon > 0$. So you should start by taking an arbitrary $\epsilon > 0$ (and a pair $x,y\in U$) and showing that it has the desired property, in this case $|\sqrt{x} - \sqrt{y}| < \epsilon$. This is a fundamental proof method in real analysis and it will come up over and over, so you should start getting used to it now.

It's also not true that $\frac{|x-y|}{\sqrt{x} + \sqrt{y}} < |x-y|$ (consider $x = y = \frac{1}{4}$ -- in fact, whenever $\sqrt{x} + \sqrt{y} < 1$).

  • 1
    As I said to Don Antonio above, I think the structure of the $\varepsilon$-$\delta$ proof is sound enough (even if the details are lacking). They've fixed an arbitrary $\varepsilon > 0$, defined their $\delta$ to be $\varepsilon$, and proceeded to attempt to show that $|x - y| < \delta \implies |\sqrt{x} - \sqrt{y}| < \varepsilon$. Even if the choice of $\delta$ doesn't work, it's a sound proof structure. – Theo Bendit Jul 14 '18 at 12:37
  • @TheoBendit thanks for your input. You're right, my comments were about a previous iteration of his post which had the errors I described above. Those errors have since been corrected. –  mheldman Jul 14 '18 at 15:32
2

As mentioned below, your proof is wrong. But here's a easy solution that doesn't use many inequalities and just Weiestrass and MVT:

$\textbf{Solution}:$ Fix $\epsilon > 0$. We shall split up $\mathbb{R}^+$ to $[0,1]$, $[1,\infty)$ to make use of the powerful tool MVT. Indeed, by MVT for any $x,y \in [1,\infty)$, we have \begin{align}|f(x)-f(y)| = |x-y||f'(\xi)| \leq |x-y|/2 \end{align} for some $\xi \in [1,\infty)$, and for the second inequality we used the derivative of $f$ is bounded by 1/2 on $[1,\infty)$. Now let $\delta_{1} = 2 \epsilon$

Now for $x \in [0,1]$, we have by Heine Borel that $[0,1]$ is compact, and $f$ is continous over $[0,1]$, so by Weiestrass (a continuous function over a compact interval is uniformly continuous) that $f([0,1])$ is uniformly continous. Hence, there's some $\delta_{2}$ s.t. for any $|x-y| < \delta_{2}, |f(x)-f(y)| < \epsilon$ for $x,y \in [0,1]$.

Now let $\delta = \min(\delta_{1}, \delta_{2})$, and we have uniformly continuity on $\mathbb{R}^+$

  • +1 See also this answer: https://math.stackexchange.com/a/728364/248286 – Theo Bendit Jul 15 '18 at 21:55
  • Thank you for this, but our class didn't discuss MVT and Weierstrass. I need to be familiar with this, but I skipped a prereq.. stubborn me. – TheLast Cipher Jul 16 '18 at 02:28
  • 1
    These are generally taught techniques in Real Analysis. It’s my bad, I should’ve used simpler techniques –  Jul 16 '18 at 03:19