-
Notifications
You must be signed in to change notification settings - Fork 84
Description
Currently, the metric space on Cauchy approximations defined in agda-unimath uses the product metric: two Cauchy approximations x
, y
in a metric space M
are in a d
-neighborhood if for all epsilon
, x epsilon
and y epsilon
are in a d
-neighborhood in M
.
It's not obvious to me that this is the best, or even the most standard, metric. For example, consider x epsilon = epsilon
and y epsilon = neg-Q epsilon
. These both have limit 0 in the standard metric space on the rational numbers, but by the product metric they have unbounded distance from each other.
I would generally expect the most standard metric on the space of Cauchy approximations would say these approximations are indistinguishable and are in d-neighborhoods for every d. I believe the appropriate definition is that two approximations are in d-neighborhoods if for every delta, epsilon
, x delta
and y epsilon
are in d+delta+epsilon
-neighborhoods of each other.
(This definition would lend itself well to defining the completion of a metric space, and from there to defining the Cauchy real numbers as the completion of Q.)