Functional Analysis – Why Define Distance Using Norm Function in Metric Space?

functional-analysismetric-spaces

I have started studying normed spaces. I wonder what's the need of defining notion of distance using norm function. For example , we know that $\mathbb{R}$ is a metric space with respect to usual metric defined by $d(x,y) = \lvert x – y \rvert$.

Now, I am studying $\mathbb{R}$ is a metric space with respect to metric induced by norm defined by $d(x,y) = \lVert x – y\rVert$.

Edit 1: I mean can't we simply study metric spaces using distance function which doesn't involve norms? Why we have introduced concept of norms?

I have no problem in understanding things related with norms. But this question is troubling me which might sound trivial.

Best Answer

Norms only make sense on vector spaces, whereas metrics can be defined on arbitrary sets.

Supposing we are in a vector space, the principles that distinguish a norm from a metric are 1) translation invariance, and 2) homogeniety. Metrics induced by a norm are always translation invariant and homogeneous, and given a translation invariant homogeneous metric you can build a norm via, $$||x||:=d(x,0).$$

Thus the core question is: what is the intuition behind translation invariance and homogeniety, and why are they interesting?

1) Translation invariance means that normed spaces look the same everywhere, in some sense. Any property that depends on pairwise distances between points will be the same if you translate all the points over. $$d(x+h,y+h)=||x-y|| \text{, independent of h.}$$

2) Homogeniety means that it is meaningful to put "units of measurement" on your space. If you measure two vectors in meters then take the norm distance between them, you get the same result as if you measured them in inches, then took the norm distance between them, then converted that distance from inches to meters. $$d(ax,ay) = |a|d(x,y).$$

Related Question