This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
feat(analysic/convex): add lemmas and defs about low-dimensional simplices #19101
Closed
Conversation
This file contains 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
github-actions
bot
added
the
modifies-synchronized-file
This PR touches a files that has already been ported to mathlib4, and may need a synchronization PR.
label
May 26, 2023
urkud
added
awaiting-review
The author would like community review of the PR
t-topology
Topological spaces, uniform spaces, metric spaces, filters
t-analysis
Analysis (normed *, calculus)
and removed
modifies-synchronized-file
This PR touches a files that has already been ported to mathlib4, and may need a synchronization PR.
labels
May 26, 2023
eric-wieser
reviewed
May 26, 2023
eric-wieser
reviewed
May 26, 2023
|
||
lemma ite_eq_mem_std_simplex (i : ι) : (λ j, ite (i = j) (1:𝕜) 0) ∈ std_simplex 𝕜 ι := | ||
⟨λ j, by simp only; split_ifs; norm_num, by rw [finset.sum_ite_eq, if_pos (finset.mem_univ _)]⟩ | ||
|
||
lemma single_mem_std_simplex (i : ι) : pi.single i 1 ∈ std_simplex 𝕜 ι := |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is missing a DecidableEq
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a decidable_eq
variable a few lines above.
eric-wieser
added
awaiting-author
A reviewer has asked the author a question or requested changes
and removed
awaiting-review
The author would like community review of the PR
labels
May 28, 2023
urkud
added
the
modifies-synchronized-file
This PR touches a files that has already been ported to mathlib4, and may need a synchronization PR.
label
Jun 21, 2023
urkud
added
awaiting-review
The author would like community review of the PR
and removed
awaiting-author
A reviewer has asked the author a question or requested changes
labels
Jun 21, 2023
eric-wieser
added
the
not-too-late
This PR was ready at the point mathlib3 was frozen: we will try to merge it and port it to mathlib4
label
Jul 15, 2023
I'm going to port it using oneshot. |
urkud
added
too-late
This PR was ready too late for inclusion in mathlib3
and removed
not-too-late
This PR was ready at the point mathlib3 was frozen: we will try to merge it and port it to mathlib4
labels
Jul 16, 2023
Forward-ported as leanprover-community/mathlib4#10325 |
mathlib-bors bot
pushed a commit
to leanprover-community/mathlib4
that referenced
this pull request
Feb 8, 2024
…10325) Forward-port of leanprover-community/mathlib3#19101 Motivated by https://github.com/Shamrock-Frost/BrouwerFixedPoint Co-authored-by: @Shamrock-Frost
atarnoam
pushed a commit
to leanprover-community/mathlib4
that referenced
this pull request
Feb 9, 2024
…10325) Forward-port of leanprover-community/mathlib3#19101 Motivated by https://github.com/Shamrock-Frost/BrouwerFixedPoint Co-authored-by: @Shamrock-Frost
dagurtomas
pushed a commit
to leanprover-community/mathlib4
that referenced
this pull request
Mar 22, 2024
…10325) Forward-port of leanprover-community/mathlib3#19101 Motivated by https://github.com/Shamrock-Frost/BrouwerFixedPoint Co-authored-by: @Shamrock-Frost
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
awaiting-review
The author would like community review of the PR
modifies-synchronized-file
This PR touches a files that has already been ported to mathlib4, and may need a synchronization PR.
t-analysis
Analysis (normed *, calculus)
t-topology
Topological spaces, uniform spaces, metric spaces, filters
too-late
This PR was ready too late for inclusion in mathlib3
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.
Motivated about a
homeomorph
statemnt from Shamrock-Frost/BrouwerFixedPointCo-authored-by: @Shamrock-Frost
Should lemmas about set equalities be
simp
? Orstd_simplex
shouldbe the normal form no matter what?