Technology and Art
This article represents a (very short) collection of my ongoing notes on proof tactics I’ve found useful when I’ve been stuck trying to solve proof exercises. I aim to continue documenting these in as much detail as possible. These are mostly aids while building intuition about how to prove something, and gradually should become part of one’s mental lexicon.
For now, here is a sketch of some of them.
Pathological Case where the Closure of an Open Ball is not the Closed Ball
In a Discrete Metric Space, an open ball around an element \(x_0\) is \(d(x,x_0)<1\) is \(X=\{x_0\}\). Since there is no other \(x\) within every any neightbourhood of \(x_0\), which is not \(x_0\) itself, \(X=\{x0\}\) has no limit points. Then \(X=\{x_0\}\) vacuously contains all its limit points (of which there are actually none, so the empty set is the set of limit points). Thus, \(\bar{X}=\{x_0\}\) is its own closure.
The closed ball around \(x_0\) is \(d(x,x_0)\leq 1\), which is everything, but it is not the same as \(\bar{X}=\{x_0\}\). The situation is shown below:
Generate a discrete metric space from \(\mathbb{R}\) by assuming an interval \(X=(0,1)\), and converting each \(x\in X\) into its binary form, so that the representation looks like:
\[x=\frac{x_1}{2^1}+\frac{x_1}{2^2}+\frac{x_1}{2^1}+\cdots\]When trying to prove that a sequence is Cauchy, where the distance metric is bounded to some non-zero value, derive \(\epsilon\) by considering the diminishing distance between an arbitrary element and the limit. For example:
\[d(x,y)=\vert \text{arc tan } x - \text{arc tan } y \vert\]Then we note that \(\text{arc tan } x \rightarrow \frac{\pi}{2}\) as \(x \rightarrow \infty\). Then \(\vert \text{arc tan } x - \frac{\pi}{2} \vert < \frac{\epsilon}{2}\). Then use this to prove the Cauchy criterion using the Triangle Inequality. That is:
\[d(x_m,x_n) \leq d(x_m,x) + d(x,x_n) = \frac{\epsilon}{2} + \frac{\epsilon}{2} = \epsilon\]