Comparison of Cauchy reals and Bourbaki reals #
In Data.Real.Basic
real numbers are defined using the so called Cauchy construction (although
it is due to Georg Cantor). More precisely, this construction applies to commutative rings equipped
with an absolute value with values in a linear ordered field.
On the other hand, in the UniformSpace
folder, we construct completions of general uniform
spaces, which allows to construct the Bourbaki real numbers. In this file we build uniformly
continuous bijections from Cauchy reals to Bourbaki reals and back. This is a cross sanity check of
both constructions. Of course those two constructions are variations on the completion idea, simply
with different level of generality. Comparing with Dedekind cuts or quasi-morphisms would be of a
completely different nature.
Note that MetricSpace/cau_seq_filter
also relates the notions of Cauchy sequences in metric
spaces and Cauchy filters in general uniform spaces, and MetricSpace/Completion
makes sure
the completion (as a uniform space) of a metric space is a metric space.
Historical note: mathlib used to define real numbers in an intermediate way, using completion of uniform spaces but extending multiplication in an ad-hoc way.
TODO:
- Upgrade this isomorphism to a topological ring isomorphism.
- Do the same comparison for p-adic numbers
Implementation notes #
The heavy work is done in Topology/UniformSpace/AbstractCompletion
which provides an abstract
characterization of completions of uniform spaces, and isomorphisms between them. The only work left
here is to prove the uniform space structure coming from the absolute value on ℚ (with values in ℚ,
not referring to ℝ) coincides with the one coming from the metric space structure (which of course
does use ℝ).
References #
- [N. Bourbaki, Topologie générale][bourbaki1966]
Tags #
real numbers, completion, uniform spaces
The metric space uniform structure on ℚ (which presupposes the existence of real numbers) agrees with the one coming directly from (abs : ℚ → ℚ).
Cauchy reals packaged as a completion of ℚ using the absolute value route.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Type wrapper around ℚ to make sure the absolute value uniform space instance is picked up
instead of the metric space one. We proved in Rat.uniformSpace_eq
that they are equal,
but they are not definitionaly equal, so it would confuse the type class system (and probably
also human readers).
Equations
Instances For
Equations
- CompareReals.uniformSpace = AbsoluteValue.abs.uniformSpace
Real numbers constructed as in Bourbaki.
Instances For
Bourbaki reals packaged as a completion of Q using the general theory.
Equations
- CompareReals.bourbakiPkg = UniformSpace.Completion.cPkg
Instances For
The uniform bijection between Bourbaki and Cauchy reals.