Zulip Chat Archive
Stream: mathlib4
Topic: UniqueDiffNear
Yury G. Kudryashov (Apr 20 2025 at 19:06):
In many lemmas about iteratedFDerivWithin etc, the "right" assumption is (UPD: fixed) ∀ᶠ x' in 𝓝[s] x, UniqueDiffWithinAt 𝕜 s x'. Should we introduce a name for this predicate?
Aaron Liu (Apr 20 2025 at 19:12):
Maybe UniqueDiffOnFilter?
Sébastien Gouëzel (Apr 20 2025 at 19:23):
Isn't it rather ∀ᶠ x' in 𝓝[s] x, UniqueDiffWithinAt 𝕜 s x'?
Aaron Liu (Apr 20 2025 at 19:31):
I think that's equivalent
Yury G. Kudryashov (Apr 20 2025 at 20:23):
Aaron Liu said:
I think that's equivalent
No, in the correct version we don't assume that x' \notin s close to x are unique differentiability points of s.
Aaron Liu (Apr 20 2025 at 20:26):
oh yeah that's not equivalent
Yury G. Kudryashov (Apr 21 2025 at 00:32):
UPD: it seems that the right one is ∀ᶠ x' in 𝓝[insert x s] x, UniqueDiffWithinAt 𝕜 s x' a.k.a. UniqueDiffWithinAt 𝕜 s x and :up:
Last updated: May 02 2025 at 03:31 UTC