Draft: Urysohn's Lemma via uniformities#871
Closed
zstone1 wants to merge 12 commits intomath-comp:masterfrom
Closed
Draft: Urysohn's Lemma via uniformities#871zstone1 wants to merge 12 commits intomath-comp:masterfrom
zstone1 wants to merge 12 commits intomath-comp:masterfrom
Conversation
Contributor
Author
|
Closing in favor of #900. It's a superior proof. The only thing that could be salvageable from here is the stuff on star-refinement. But that should be done with HB anyway. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation for this change
I'm on a roll finding applications of
countable_uniform_pseudoMetricType_mixin. Here, we prove urysohn's lemma (well, 90% of it). The only remaining detail is building distance functions from pseudometrics. But as discussed, doing that correctly requires some generic machinery.The proof itself is, as far as I know, a new proof. Given two separated sets A B, we use the same general idea as the standard rational induction: iteratively splice in open sets between
Aand~Bto build a "smooth" nested chain of open sets. However, this proof does not build the continuous function directly. Instead we show that this splicing technique produces a uniformity. That entourage has a couple featuresx,ywithA x /\ A ywe havedist x y = 0A xandB ythendist x y > 0.All together, this shows that
fun z => min (dist(x,z)) (dist (x,y)) / dist(x,y)is exactly what we want.A few interesting things here. This proof is pretty useless in a textbook. It requires a lot of background on uniformities to work. Two big pieces are required:
countable_uniform_pseudoMetricType_mixin. The proof of this is substantially harder than the textbook proof urysohn's lemma.Another interesting thing: the proof is not meaningfully faster than the standard proof. Proving continuity in the standard approach is roughly as hard as proving the star-refinement relationship. The main distinction of this proof technique is that it avoids some painful details about induction over the rationals, and rational embeddings in the reals. In fact, nothing about the rationals is required to prove this, or any of its dependencies. One key benefit is reducing dependencies across the code. The fewer facts about
Qrequired intopology.vthe happier we will all be.Like the cantor set stuff, I'm gonna break this apart into smaller, more reviewable chunks.
Things done/to do
CHANGELOG_UNRELEASED.md(do not edit former entries, only append new ones, be careful:
merge and rebase have a tendency to mess up
CHANGELOG_UNRELEASED.md)Automatic note to reviewers
Read this Checklist and put a milestone if possible.