I've come to a problem I'm not quite sure how to tackle, but I realise it's quite simple in its core.
Let's assume $(M,d_2)$, where M is a set of vertices in $R^2$ space, and d being Euclidean metric. Now let's assume another metric space $(M,d_1)$, M being the same set of vertices in 2D space and $d_1$ being Manhattan (Taxicab) metric.
The question is, are these two metric systems isomorphic?
PS: I'm not quite sure if this question is correctly formalized. Just in case I'm adding my personal problem to minimize any confusion.
I'm building a simple code to compare vertex distances in 2D space, but Euclidean distance is computationally too difficult for my needs, because I only need comparation. Thus, I'd like to use Manhattan metric system for its simplicity, but I don't know if I can't end up with a solution that's false in Euclidean metrics.