§ Total Boundedness in a metric space

§ Totally bounded implies bounded

§ For R\mathbb R, bounded implies totally bounded

§ In infinite dimensions, bounded need not be totally bounded.

§ compact => closed + totally bounded in infinite dim also

§ closed + totally bounded => sequentially compact in infinite dim also

def mk_cauchy_sequence(S):
  k = 1
  while True:
    s = choose(S)
    yield s
    Nk = finite_epsilon_net(S=S, epsilon=1/2^k)
    # n ∈ Nk such that n has an infinite number of points from $S$ in
    # the epsilon ball around $n$.
    n = hilbert-epsilon-choose(|{ n ∈ N : S ∩ Ball(n, epsilon) }| = infty)
    S = Ball(n, epsilon) # restrict to ball that has the inif
    k += 1