Exploring Space: A Survey of Mathematical Spaces

Mon Jan 09 2023

Though our day to day is often restricted to our 3-dimensional Euclidean space, mathematicians often are working in much more diverse and complex spaces.

For the most part, a space is a combination of a set of “points” with some operation allowing these points to interact. The different criteria for these operations are what make these spaces unique and give them different properties.

In this article, I’ll assume an understanding of Vector Spaces and Set notation. We’ll cover:

  • Metric Space
  • Normed Space
  • Inner Product Space
  • Complete Metric Space
  • Banach Space
  • Hilbert Space
  • Topological Space
  • Hausdorff Space

Metric Space

Let XX be a nonempty set and let d:X×XRd: X \times X \to \R be a function taking two elements of X and producing a real number. dd is called a metric if it satisfies four conditions for all x,y,zXx,y,z \in X

  1. Nonnegativity: 0d(x,y)0 \leq d(x,y) \leq \infty

  2. Symmetry: d(x,y)=d(y,x)d(x,y) = d(y,x)

  3. Triangle Inequality: d(x,z)d(x,y)+d(y,z)d(x,z) \leq d(x,y) + d(y,z)

  4. Uniqueness: d(x,y)=0d(x,y) = 0 if and only if x=yx = y

A metric space is the set XX equipped with our metric dd. The metric is effectively a function telling us the “distance” between two points.

The metric space you are likely most comfortable with is R2\R^2 equipped with the euclidean metric. If we have two points in the cartesian place (x1,y1),(x2,y2)R2(x_1,y_1), (x_2,y_2) \in \R^2, our euclidean metric is d((x1,y1),(x2,y2))=(x1x2)2+(y1y2)2d((x_1,y_1), (x_2,y_2)) = \sqrt{(x_1-x_2)^2 + (y_1-y_2)^2}. Another common metric is the “taxicab” or “manhattan” metric, which just takes the sum of each of the coordinate distances: d((x1,y1),(x2,y2))=(x1x2)+(y1y2)d'((x_1,y_1), (x_2,y_2)) = (x_1-x_2) + (y_1-y_2).

You can check that both of these metrics satisfy all our conditions.

An easy nonexample is to again take the real number line R\R, and let d(x,y)=2xyd(x,y) = |2x-y|. Note that our function d fails the symmetry requirement since d(5,2)=252=8d(5,2) = |2*5-2| = 8 but d(2,5)=225=1=1d(2,5) = |2*2 - 5| = |-1| = 1. Thus dd is not a metrics and we don’t have a metric space.

Normed Space(Or a normed vector space)

Consider a vector space VV over a field FF. VV is a normed linear space if there exists a function(called a norm) :VR||*||: V \to \R such that for all x,yV,kFx,y \in V, k \in F the following rules are satisfied:

  1. Nonnegativity: 0x0 \leq ||x||

  2. Homogeneity: cx=cx|c|||x|| = ||cx||

  3. Triangle Inequality: x+yx+y||x+y|| \leq ||x|| + ||y||

  4. Uniqueness: x=0||x|| = 0 if and only if x=0vx = 0_v

Note that given a norm ||*||, one can always define a valid metric d(x,y)=xyd(x,y) = ||x-y||. Thus every normed space is a metric space as well.(Note the opposite is not always true. Not every metric space is a normed space)

For examples, consider the ones used for metric spaces where the norm is defined x=d(x,0)||x|| = d(x,0)

Thus while a metric tells us “distance", a norm tells us “size”.

Inner Product Spaces

Note to make things simple, we will only consider the field FF to be the real or complex numbers.

An inner product space is a vector space VV over a field FF equipped with an operation(called an inner product) ,:V×VF\langle \cdot,\cdot\rangle: V \times V \to F satisfying three conditions for all x,y,zVx,y,z \in V and

  1. Conjugate Symmetry: x,y=y,x\langle x,y \rangle = \overline{\langle y,x \rangle}

  2. Linearity in the first argument: ax+by,z=ax,z+by,z\langle ax + by, z\rangle = a\langle x,z \rangle + b \langle y,z \rangle

  3. Positive-definiteness: x,x0\langle x, x \rangle \geq 0 whenever x0x \neq 0

These conditions might require a bit of unpacking.

If x=a+bix = a + bi is a complex number, we define its conjugate to be x=abi\overline{x} = a - bi. Thus note if our field is the real numbers, for all xR,x=xx \in \R, x = \overline{x}. Thus over the real numbers we have that y,x=y,x\overline{\langle y,x \rangle} = \langle y,x \rangle so our first condition is actually just normal symmetry.

Additionally, when we are working over the real numbers we have: ax,y=ax,y=ay,x=ay,x=x,ay\langle ax, y \rangle = a\langle x,y \rangle = a\langle y,x \rangle = \langle ay,x \rangle = \langle x, ay \rangle.

Finally consider that we can always define a norm x=x,x||x|| = \sqrt{\langle x,x \rangle}. You can check that all our requirements for a norm are satisfied.

Thus every inner product space can be a normed space, and thus also a metric space.

Complete Metric Spaces

A metric space (M,d)(M,d) is called complete if any converging sequence (an)(a_n) of elements in anMa_n \in M converges to a value in MM.

More precisely, let (an)(a_n) be a sequence where for all nN,anMn \in \N, a_n \in M. Suppose there exists a point LL, such that

limnd(an,L)=0\lim_{n \to \infty} d(a_n, L) = 0

We say that (an)(a_n) converges to L. If for any such converging sequence (an)(a_n) we have that its limit LL is within MM, then we call (M,d)(M,d) a complete metric space.

It may be hard to imagine an example of a metric space that isn’t complete. Consider the open interval M=(0,1)M = (0, 1) and d(x,y)=xyd(x,y) = |x-y|. Now consider the sequence (an)(a_n) given by an=1na_n = \frac{1}{n}. Now note that

limnd(an,0)=limnd(1n,0)=limn1n0=limn1n=0\lim_{n\to\infty} d(a_n, 0) = \lim_{n\to\infty} d(\frac{1}{n}, 0) = \lim_{n\to\infty} |\frac{1}{n} - 0| = \lim_{n\to\infty} \frac{1}{n} = 0

Thus we have that L=0L = 0, but 0 is not in MM. Thus M is not a complete metric space, since we have found a sequence that converges outside the space.

Banach Space

A Banach Space (V,)(V, ||\cdot||) is a vector space VV, paired with a norm, ||\cdot|| such that with respect the metric induced by the norm d(x,y)=xyd(x,y) = ||x-y||, VV is a complete metric space.

Note what makes the Banach space different from any regular complete metric space is the fact that it is a vector space and that the metric is specifically defined in terms of a norm(This is not true of every metric).

Hilbert Space

A Hilbert Space is an inner product space (V,,)(V, \langle \cdot, \cdot\rangle) with a metric defined d(x,y)=xy,xyd(x,y) = \sqrt{\langle x-y, x-y \rangle} forming a complete metric space.

The easiest example is V=R2V = \R^2 with the inner product:

(x1y1)(x2y2)=x1x2+y1y2\langle \begin{pmatrix}x_1 \\ y_1\end{pmatrix} \begin{pmatrix}x_2 \\ y_2\end{pmatrix} \rangle = x_1x_2 + y_1 y_2

Which gives us the norm:

(x1y1)=(x1y1),(x1y1)=x2+y2||\begin{pmatrix}x_1 \\ y_1\end{pmatrix}|| = \sqrt{\langle \begin{pmatrix}x_1 \\ y_1\end{pmatrix} , \begin{pmatrix}x_1 \\ y_1\end{pmatrix}\rangle} \\ = \sqrt{x^2 + y^2}

And gives us the metric:

(x1y1)(x2y2)=(x1x2y1y2)=(x1x2)2+(y1y2)2||\begin{pmatrix}x_1 \\ y_1\end{pmatrix} - \begin{pmatrix}x_2 \\ y_2\end{pmatrix}|| = ||\begin{pmatrix}x_1 - x_2 \\ y_1 - y_2\end{pmatrix}|| \\ = \sqrt{(x_1-x_2)^2 + (y_1-y_2)^2}

Which is our standard euclidean distance function.

Topological Space

A Topological Space is a set XX combined with a set τ\tau called a a topology, where the elements of this topology τ\tau are all different subsets of XX following certain conditions.

There are a number of different equivalent rules, but the simplest is through the notion of ‘open sets’. τ\tau is a topology if the following three conditions are met.

  1. The empty set and XX are both elements of τ\tau

  2. The union of an arbitrary number of elements of τ\tau, must also be in τ\tau

  3. The intersection of any finite number of elements of τ\tau, must also be in τ\tau

With the elements of τ\tau being called open sets.

A very simple example is the set X={1,2,3}X = \{1,2, 3\} with the topology τ=\tau = {{},{1},{1,2},{1,2,3}}\{\{\}, \{1\}, \{1, 2\}, \{1, 2, 3\}\}.

The real numbers R\R become a topological space with the topology τ={[a,b)a,bR,a<b}\tau = \{[a, b)| a,b \in \R, a <b\}.

While it may be unclear how the notion of a topology is helpful, this collection of different subsets of XX allows us to talk about some notion of “closeness”, without requiring a form of distance. This notion of closeness is actually all we need to talk about a notion of limits and convergence.

Topological spaces are thus much more versatile classification compared to metric and vector spaces.

Hausdorff Space

Finally, a Hausdorff Space is a set XX equipped with a topology τ\tau where for any points x,yXx,y \in X, there are subsets τx,τyτ\tau_x, \tau_y \in \tau, such that xτx,yτy,x \in \tau_x, y \in \tau_y, and τxτy=\tau_x \cap \tau_y = \empty. In other words for any points in the set, there are disjoints subsets in τ\taucontaining xx and yy respectively.

While in a regular topological space we have a notion of “closeness”, in Hausdorff spaces we can compare how close you are to two different points.

While limits can exist in all topological spaces, such limits are only guaranteed to to be unique in Hausdorff Spaces.