Monday, September 26, 2016

Functional Analysis - Metric and Normed spaces

A metric space is a set for which all the distance between all members of the set are defined. What does that mean? Let's take a set of values, the natural ones , and let's take a distance between elements d(x, y) = |x - y|, well, this is a metric space. Another metric space will be the same distance but another set of elements, or another distance for the same set of elements.
What does that mean at all? Most of the people think in a Euclidean space when taking about distances, but when you're in a non-Euclidean space, the distance between two points has a different calculation. For example, in a sphere, the (minimal) distance between two points is not the difference of its rectangular coordinates, the same occurs in a hyperbolic plane.
The important point in metric spaces is the definition of the metric, which in topology must follow some rules:
  1. d(x, y) ≥ 0: the distances will always be positive.
  2. d(x, y) = 0 ⇔ x = y: if a distance is zero, it means that both elements are equals.
  3. d(x, y) = d(y, x): the distance is the same no matter from which point we start.
  4. d(x, z) ≤ d(x, y) + d(y, z): this is the triangle inequality.
Let's now see the normed spaces. A normed space is applied to vector space instead of a set elements as the metric space. So, the metric spaces, consists in a vectors space plus a definition of a norm. What's a norm? Is the definition of length or size of a vector. The norm also follows a set of rules similar to the metric:
  1. ||x|| ≥ 0: the norm must always be positive.
  2. ||x|| = 0 ⇔ x = 0: if the norm is zero, then the vector is the zero vector.
  3. ||ax|| = |a| ||x||: let a be a scalar, the value of the norm of a vector multiplied by a scalar is equal to the norm of the vector multiplied by the modulo of the same scalar.
  4. ||x + y|| ≤ ||x|| + ||y||: this is the triangle inequality.
A normed space also defines a metric as d(x, y) = ||x - y|| which is called a metric induced by the norm.

Before continuing, let's try to see some examples of both spaces.
  • Real line ℝ: this is a one dimensional set (so, we can't define a normed space here). A common metric will be d(x, y) = |x - y|
  • Euclidean plane ℝ2: considering each element as a vector of two dimensions, we can define a metric as d(x, y) = ((x1-y1)2 + (x2-y2)2)1/2. Here we can also define a norm, as the elements of the set are vectors. The norm in this case will be ||x|| = (x12 + x22)1/2
  • Sequence space l: consider a set of elements where each element is composed by a sequence of bounded values, x = (x1, x2, x3, ...) or x= (xj) where |xj| ≤ cx (cx is a real number). A common metric for a space as describe here is d(x, y) = sup|xj - yj|, where sup means the supremum (least upper bound). And a norm as ||x|| = sup|xj|. This example shows how the concept of metric and norm are surprisingly general.

Let's now see some important concepts which play an important role with metric spaces.

  • Boundary: consider a bounded set of values, the union of all the values which are in the border of the set are considered the boundary. Consider a ball B(x0, r) with center at x0 and radius r, the boundary will be the set of values as d(x, x0) = r.
  • Open set: an open set consists of a bounded set where the boundary does not belong to the set.
  • Closed set: a closed set consists of a bounded set where the boundary also belong to the set.
  • Convergence: given a sequence (finite or infinite), it's said to converge if the values, as we progress into the sequence, tends to approach to a defined value. Given a sequence (xn), it's said that it converges to x if lim d(x, xn) = 0
  • Cauchy Sequence: given a sequence (xn) if there is an ε where d(xn, xm) < ε for n, m > N. What does that mean? For every element from N to infinity of the sequence, the distance between each element is less that a value ε, where ε is more than zero and less than infinity; that's there is no point in the infinity for the sequence from indexes higher than N.
  • Completeness: a metric space is said to be complete, if every Cauchy sequence of the space converges.
Now that we have all those concepts, we can define a Banach space. A Banach space complete normed space. The concept of complete space can also be applied to a normed space, as from a norm we can obtain a metric (the metric induced by norm). The Banach spaces are very used in functional analysis, as all the properties which it involves are of particular interest.

No comments:

Post a Comment