2

Let $X$ be a metric space and $A,B\subset X$ satifying $\overline{A}\cap\overline{B}=\emptyset$. Define $\phi :X\to\mathbb{R}$ by $$\phi(x)=\frac{\operatorname{d}(x,A)}{\operatorname{d}(x,A)+\operatorname{d}(x,B)}$$

where $\operatorname{d}$ denotes distance. Is true that $\phi$ is Locally Lipschitz?

I am trying to use the fact that $\operatorname{d}$ is Lipschitz, but I could not achieve a good inequality for this.

Thanks.

Tomás
  • 22,559

1 Answers1

1

You have $$|\phi(x)-\phi(y)|= \frac{ |d(x,A)d(y,B)-d(y,A)d(x,B)|}{(d(x,A)+d(x,B))(d(y,A)+d(y,B))}$$

Eventually, permute $x$ and $y$ so that: $$|\phi(x)-\phi(y)|= \frac{ d(x,A)d(y,B)-d(y,A)d(x,B)}{(d(x,A)+d(x,B))(d(y,A)+d(y,B))}$$

But $d(x,A) \leq d(x,y)+d(y,A)$ so $$ \begin{array}{ll} d(x,A)d(y,B)-d(y,A)d(x,B) & \leq d(x,y)d(y,B)+d(y,A)(d(y,B)-d(x,B)) \\ & \leq d(x,y)(d(y,A)+d(y,B)) \end{array}$$

Finally, $$|\phi(x)-\phi(y)| \leq \frac{d(x,y)}{d(x,A)+d(x,B)}$$

To show that $\phi$ is locally lipschitz, it is sufficient to notice that $x \mapsto d(x,A)+d(x,B)$ is locally bounded below.

Because $\overline{A} \cap \overline{B}=\emptyset$, for any point $x$ there exists an open ball $B(r)$ such that either $B(r) \cap \overline{A}= \emptyset$ or $B(r) \cap \overline{B}= \emptyset$; without loss of generality, suppose $B(r) \cap \overline{A}= \emptyset$. Then $$d(x,A)+d(x,B) \geq d(x,A) \geq r$$

Remark: If $\delta:=d(A,B)>0$, then $\phi$ is $1/\delta$-lipschitz.

Seirios
  • 33,157
  • @Seiros : The OP's assumptions do not imply that the distance between $A$ and $B$ is positive (e.g. consider $X = \mathbb{R}^2$, $A ={(x,1/x) \mid x<0}$, $B ={(x,1/x) \mid x>0}$), and you assumed that it is in your proof. I am not saying your proof is totally wrong, just that it might need to be adjusted. – Stefan Smith Apr 18 '13 at 23:14
  • @StefanSmith: I think I fixed the problem. – Seirios Apr 19 '13 at 07:08