[Merged by Bors] - feat(Algebra/Homology): right shifting cochains#8937
Closed
[Merged by Bors] - feat(Algebra/Homology): right shifting cochains#8937
Conversation
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
10 tasks
jcommelin
reviewed
Dec 27, 2023
Comment on lines
+119
to
+127
| /-- The additive equivalence `Cochain K L n ≃+ Cochain K L⟦a⟧ n'` when `n' + a = n`. -/ | ||
| @[simps] | ||
| def rightShiftAddEquiv (n a n' : ℤ) (hn' : n' + a = n) : | ||
| Cochain K L n ≃+ Cochain K (L⟦a⟧) n' where | ||
| toFun γ := γ.rightShift a n' hn' | ||
| invFun γ := γ.rightUnshift n hn' | ||
| left_inv γ := by simp | ||
| right_inv γ := by simp | ||
| map_add' γ γ' := by simp |
Member
There was a problem hiding this comment.
Please consider moving this up a bit higher. And then you can deduce all the lemmas about preserving 0 and - etc, by just restating the goal in terms of this AddEquiv, and applying some generic map_zero or map_neg lemma.
Also... should this even be upgraded to a linear equiv?
Contributor
Author
There was a problem hiding this comment.
Thanks for the suggestion! I have deduced the lemmas that can be deduced from the additive equivalence, and I have also made a linear equivalence version.
8 tasks
mathlib-bors bot
pushed a commit
that referenced
this pull request
Jan 1, 2024
In this PR, we study the behaviour of cochains (of the complex of homomorphisms) with respect to shifts (on the target). In particular, we obtain an additive equivalence `rightShiftAddEquiv K L n a n' h : Cochain K L n ≃+ Cochain K L⟦a⟧ n'` when `n' + a = n`. Co-authored-by: Joël Riou <[email protected]>
Contributor
|
Pull request successfully merged into master. Build succeeded! And happy new year! 🎉 |
11 tasks
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.
In this PR, we study the behaviour of cochains (of the complex of homomorphisms) with respect to shifts (on the target). In particular, we obtain an additive equivalence
rightShiftAddEquiv K L n a n' h : Cochain K L n ≃+ Cochain K L⟦a⟧ n'whenn' + a = n.A similar PR shall be necessary for the study of the shift on the source, but that will be more intricate as there will be signs in the definitions...