-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{in A, continuous f} has bad boundary conditions #408
Comments
Yes you are right, I stumbled on the same issue some time ago, I have a solution based on having an alias to point out the subset topology relatively to a set |
Well, I can't get the notations described above to work. I'd like to define
This all typechecks, but it's seems like a deadend approach. Using
I do not know how to resolve this. Can we change the order of evaluation here? |
I think you are right about the unification order. I do not know yet how to do things properly. I'll let it sink in during my Christmas holidays. |
Phrases like
{in [a, b], continuous f}
appear in various places in the repo (such as MVT). This phrasing is a little too strong. In MVT, it requiresf
be continuous from the left ata
, but we shouldn't have to care about valuesf
takes outside of[a,b]
. This mixes particularly poorly withrestrict
, and other piecewise definitions. I've got two approaches, and I don't like either.a) We can define
{within A, continuous f}
notation that somehow replaces filters withwithin A
versions. Even if you could define such a notation, the downside is existing continuity results won't apply directly.b) We can use Tietze Extension Theorem-style alterations on
f
, but this is awkward as well. And it may not be possible for sets that are neither open or closed.Is there an elegant way to fix this statement to mean the right thing?
The text was updated successfully, but these errors were encountered: