Throughout an undergrad math or engineering education, students like myself typically think of “spaces” as . These are all finite-dimensional and constant spaces. Finite and constant meaning the actual element in the space is a finite list/vector of constants (reals/complex). Space of fixed size matrices, though at first may seem strange, are really just space of finite dim vectors. All of such spaces are typically also vector spaces and hence we can perform linear algebra on them. These are all the setting for a majority of undergraduate level problems in math and engineering.
However, one soon should get adjusted to thinking about infinite-dim spaces. And not just working on them as well but getting an intuition for it (which is the difficult part). My professor also mentioned that this is a good bridge to start going to less intuitive spaces. This is my first actual post, so I apologize for being overly pedantic (in both explanation and proof writing).
The Problem
A unique (at least for an undergrad) problem came up while working on a chapter on metrics and normed spaces. It involves a few definitions and is a good challenge if you’ve already done analysis at the level of Abbott’s and have a basic grasp of metric spaces. It’s short and concise but brings up quite a bit to comment on. It’s stated as follows:

The space is just the space constituting of all real sequences that are finite (i.e., abruptly end at some point). Notice how an element
is thus defined a bit strangely.
Side tangent: Getting used to defining basic things (like spaces) rigorously can be tedious, but doing so allows you to later perform analysis on it much more simply. Also, understanding conventions for defining certain structures (such as this) allows one to more quickly read advanced math without having to get stuck on “what does this subscript mean here, why is there an N for every sequence” or “how is this even defined” itself later on. This, IMO, is a major part of the hidden curriculum of undergraduate math.
The problem uses a standard max norm function which simply takes the largest absolute element. Notice we use a max norm, in what case (what similar space X) would it be better to use a sup norm instead? Anyways, let’s begin with the solution for this.
Preliminaries
But wait, before calling it a norm, we need to verify that our space is a vector/linear space (we’ll stick to calling it linear, since someone at this level is soon to be studying functional analysis). After that, we need to check that our function
is a valid norm on our linear space
. This is part a. All of this is fairly straight forward through verifying axioms, we’ll skip the details. So, we now know
is a normed linear space.
And as hopefully you know, a normed linear space induces a metric space with metric . Note that this may not be the only metric space involving space
. Let’s move on to part b.
X is not Complete
In part b, our goal now is to show that the metric space induced from the normed linear space is not complete (i.e., that it is not a complete metric space). The notion of completion is something I’ve just recently learned, so bear with me while we work on this problem. Here’s one way to define the completeness property of a metric space.
A metric space is complete if all Cauchy sequences are convergent to a point in the space.
Let’s show our space is not complete. This means we want to show (WTS) that there exists some Cauchy sequence that converges to a limit outside of our space. These problems can be a blessing or a curse since one way to prove it is to find a specific example which can be either easy or annoyingly constructive.
This one is right in the middle. The plan is as follows: We have to first construct a sequence in our space (1), show it’s Cauchy (2), and then show that it converges to a point outside the space (3). Devising a basic plan to solve a problem is a useful and difficult skill to develop in doing proofs (I myself used to have a habit of “blindly” trying to solve it and praying that the steps I’m taking are leading me closer to the solution). It requires you to know how a problem statement can be divided into steps, and seeing how a certain step can lead to the next.
(1): This is a bit annoying notation wise, but we construct a sequence with elements from our space of sequences
, and define each element (a sequence) as:
So our (main) sequence looks like
(2): We now WTS that is Cauchy. Intuitively, it should be somewhat clear that it is indeed Cauchy. For example, fix an epsilon, after some point N (which we want to find), the distance between any two elements
should be sufficiently small (smaller than epsilon). This is because the points before that should cancel out to zero. So, we know it is indeed Cauchy.
Let . Let
which we’ll define later. Then for all
,
Observe that we can control how small this value is with . So for every
, if we let
, we have a Cauchy sequence since then
.
(3): Now comes the main part — Showing our Cauchy sequence converges to a point outside the space. Let fixed be any sequence in our space. We want to show that our Cauchy sequence of sequences
in fact does not converge to
meaning it doesn’t converge to a point in our space. Assuming that our fixed
from our
ends earlier than some
,
Observe that as we take , the value of above stays constant since our norm takes the absolute max. Thus, explicitly,
Clearly for some
. So for that
, we know that the distance between our Cauchy sequence and
never gets below a fixed constant. Therefore, our Cauchy sequence does not converge to a limit in our space. Hence our space is not complete.
X is dense in C_0
In part c), we define a new space to be the space of all real sequences
that converge to 0, i.e.,
. In fact,
is a subset of
since each element in X eventually are all just zeros hence have elements that converge to 0. Thus, this part considers the normed linear space
(which again induces a metric space).
The problem asks us to show that unlike , our new larger space
is complete. We also want to show that
is dense in
. A common example of such is the rationals which are dense in the reals (which are complete under the typical metrics).
A subset
of a metric space
is said to be dense in
if the closure of
is the metric space.
Alternatively, subset
of a metric space
is dense in
if
such that
.
(1): First, let’s show that is dense in
through the second definition. Let
. Since
, we know that
such that if
, then
Now we want to construct a sequence in
such that it converges to
. Let
where element values are taken from
. Expanded,
Therefore, such that if
, then
since . Hence, we’ve shown
is dense in
.
(2): Now we want to show that in fact is complete. This part is very involved and incorporates a lot of nested indices, so we’ll skip this part for now. The goal nonetheless is as expected, to show that every Cauchy sequence converges to a point in the same space.
Ending
This wraps up the solution to a simple but somewhat involved problem introducing the space of sequences and other notions from metric spaces. Th proofs themselves are not atypical for an analysis problem. I suspect getting troubled by the bookkeeping of indices from all these constructions will be less of an issue as one advances in math. Getting lost in construction and manipulation is never the main focus. And building intuition for a problem through drawings, examples, and laying out a plan will always help clear things out.
This post is my first math related post and was written up in 3-4 hours as I was learning the material. These types of posts involving solving a specific problem shouldn’t be too common in the future.