Lipschitz Continuous functions

924 Views Asked by At

I am currently doing some revision for an exam next week when I came across this question from 3 years previous. I am a bit confused on how to tackle this question and lack a thorough understanding of the Lipschitz continuity. Can anybody help?? :) enter image description here

4

There are 4 best solutions below

1
On

Hints:

a) Use the triangle inequality and choose the max of the two Lipschitz constants $L_f$ and $L_g$

b) Argue by contradiction and use the Mean Value Theorem

c) Use the example of part b). The function $f(x) = x$ is Lipschitz with $L = 1$ !

0
On

Hint: For (a), think about triangle inequality, $|f+g|\leq |f|+|g|$. So what would happen when both $f$ and $g$ are Lipschitz?

For (b), suppose by contradiction that $f(x)=x^2$ is indeed Lipschitz. Then there must a positive constant $L<\infty$ such that $|x^2-y^2|\leq L|x-y|$. Take $y:=0$, and $x>0$. What can you say about the behavior of $L$?

For (c), use (b) to get a counter-example.

0
On

For the first one, just use the triangular inequality :

$$|(f+g)(x) - (f+g)(y)| = |( f(x) - f(y) ) + (g(x)-g(y)) | \leq |f(x) - f(y) | + |g(x)-g(y) |$$

$$\leq L|x-y|+L'|x-y| = (L+L')|x-y|$$

For the second one, you can write :

$$|x^2 - y^2| = |x+y|\cdot|x-y|$$

Now, for every constant $M$, there exist $(x,y) \in \mathbb{R}^2$ such that $|x+y| > M$, so $x\mapsto x^2$ cannot be Lipschitz on R

For the last question, you can take $f(x)=g(x)=x$ and use the previous question

3
On

Loosely, what it means for a function to be $L$-Lipschitz continuous, is that for any two pair of points on the graph of $f$, the absolute value of the slope of the line connecting them is not larger than $L$. This puts a restriction on how "fast" the function can move.

$1)$ If $f$ and $g$ are (respectively) $L$ and $L'$ Lipschitz continuous, then:

$$|f(x) - f(y)| \le L|x - y|, \ \forall \ x,y$$

$$|g(x) - g(y)| \le L' |x - y|, \ \forall \ x,y$$

Then, $\forall$ $x,y$:

$$|(f+g)(x) - (f+g)(y)| = |f(x) + g(x) - f(y) - g(y)| = |f(x) - f(y) + g(x) - g(y)| \le |f(x) - f(y)| + |g(x) - g(y)| \le (L + L')|x - y|$$

Which shows that $f+g$ is $L+L'$-Lipschitz.

$2)$ If it is, then there would be $L>0$ for which $|x^2 - y^2| \le L|x - y|$ for all $x,y \in \mathbb R$. Take $x := L + 1$ and $y:= L$. Find a contradiction.

$3)$ The functions $f(x) = g(x) = x$ are $1$-Lipschitz on $\mathbb R$, though $(fg)(x) = x^2$ is not.