0

The two metrics $d_{1}$ and $d_{2}$ are said to be topologically equivalent if they generate the same topology.

Suppose $d_1(x,y)=\sqrt{(x_1-y_1 )^2+(x_2-y_2 )^2}$ (euclidean distance)

$d_2(x,y) = \left\{ \begin{array}{ll} |y_1-y_2 | & \mbox{if } x_1 = x_2 \\ |y_1 |+|y_2 |+|x_1-x_2 | & \mbox{if } x_1 \neq x_2 \end{array} \right.$

How I can conclude whether $d_1$ is equivalent to $d_2$ or not ?

Ulrik
  • 2,557

2 Answers2

2

The sequence $(\frac1n,1)$ converges to $(0,1)$ with respect to $d_1$, but not with respect to $d_2$ because $$ d_2\left((\tfrac1n,1),(0,1)\right)=2+\frac1n.$$

Did
  • 279,727
  • thanks for your answer. Here you have proved that they are not equivalent but how I can prove that two metrics are equivalent? It would be very useful for me if you have example. – Motasem M. Al-wazir Jan 13 '14 at 22:27
0

Take $$x = \left(1,1\right)^T \text{ and } y=\left(2,2\right)^T$$

Then $$d_2(x,y) = 0$$ but $$x\neq y$$

Thus $d_2$ is not even a metric on $\mathbb{R}^2$.

Are you sure you wrote down the task correctly?