1

Suppose $f: (0, 1) \to \mathbb{R}$ is differentiable with $|f'(x)| \le 1$. w.t.s that $f$ uniformly continuous

How can this be done?

Here was my attempt:

I used differentiability with a triangle inequality and found that $\delta = \epsilon$ had a potential of working, but I got lost in the details and felt it was not rigorous.

Edit (with respect to comments):

let $\epsilon > 0$, for $x \in (0, 1)$, we have

$\exists \delta > 0$ s.t

$|y - x| < \delta$ and $y \in (0, 1)$ implies

$\frac{f(y) - f(x)}{y - x} - f'(x) < \epsilon$

2 Answers2

1

[Probably repeating what the comments link to.] The idea is that "bounded derivative" means that the function doesn't "expand" too much, which is sort of the idea behind uniform continuity (by way of Lipschitz continuity).

More precisely, for $f:(0,1)\to\mathbb{R}$ as you describe, we have $|f(y)-f(x)|=|f'(z)(y-x)|\leq M|y-x|$ for some $z\in(x,y)$ by the mean value theorem, where $M\geq \sup\{|f'(x)| : 0<x<1\}$. In converting this to some kind of "$\epsilon-\delta$" argument, if $|y-x|<\delta$ then $|f(y)-f(x)|< M\delta:=\epsilon$. Or if you want to flip parameter dependence around, given $\epsilon$, take $\delta<\epsilon/M$.

yoyo
  • 9,943
  • 【yes, precisely】 – Calvin Khor Dec 13 '23 at 21:54
  • So we take arbitrary $x$, $y$ and use MVT. This assumes that $x < y$ correct? And since it is an open interval, we cover everybody in it, since by way of the $z(x, y)$, we can get the above inequality for any $x$, $y$? Is this understanding correct? – user129393192 Dec 14 '23 at 01:51
0

To prove that a function is uniformly continuous (assuming that you want to do it directly), you need to say, for each positive number $ \epsilon $, which positive number $ \delta $ to use (and then check that this works). You said that you want to use $ \delta = \epsilon $, and I agree that this should work. So to make it rigorous, you just need to prove that, whenever $ x $ and $ y $ are numbers in $ ( 0 , 1 ) $, if $ \lvert y - x \rvert < \delta $, then $ \lvert f ( y ) - f ( x ) \rvert < \epsilon $. Since you've chosen $ \delta = \epsilon $, you can change this to: if $ \lvert y - x \rvert < \epsilon $, then $ \lvert f ( y ) - f ( x ) \rvert < \epsilon $.

You do not want to go back to the definition of the derivative at each point and say something like what you added at the end: for each $ \epsilon $ and each $ x $, there is a $ \delta $ such that [etc]. Here, different values of $ x $ could give you different values of $ \delta $, and this is only useful to prove that $ f $ is continuous, not uniformly continuous. (You could start with a definition of uniform differentiability, since $ f $ is uniformly differentiable, but you'd have to prove that first, which seems like an unnecessary detour to me.)

Still, you need to bring in the derivative of $ f $ somehow. And the comment by @CalvinKhor tells you what to use: the Mean-Value Theorem. Since $ f ' $ always exists and $ \lvert f ' \rvert \leq 1 $, you know that any difference quotient satisfies the same inequality: $$ \Biggl \lvert \frac { f ( y ) - f ( x ) } { y - x } \Biggr \rvert \leq 1 \text . $$ (This is because the difference quotient is equal to $ f ' ( z ) $ for some $ z $, by the MVT.) From this fact, you can prove that if $ \lvert y - x \rvert < \epsilon $, then $ \lvert f ( y ) - f ( x ) \rvert < \epsilon $.

Toby Bartels
  • 4,679