-
Notifications
You must be signed in to change notification settings - Fork 373
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
draft(Module): Module length is additive in short exact sequences #22127
base: master
Are you sure you want to change the base?
Conversation
Co-authored-by: Jireh Loreaux <[email protected]>
Co-authored-by: Johan Commelin <[email protected]>
RelSeries.trimmedLength (rs.submoduleComap S.f.hom) := by | ||
induction' o : rs.length with n ih generalizing rs | ||
· aesop | ||
· let n' : Fin (rs.length) := {val := n, isLt := by rw[o] ; exact lt_add_one n} |
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.
[lint-style (comment with "bot fix style" to have the bot commit all style suggestions)] reported by reviewdog 🐶
· let n' : Fin (rs.length) := {val := n, isLt := by rw[o] ; exact lt_add_one n} | |
· let n' : Fin (rs.length) := {val := n, isLt := by rw[o]; exact lt_add_one n} |
PR summary 185ec73ce4Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
I'm not entirely sure about this approach. I think we should show that the length is equal to the length of a composition series and then this result is immediate, instead of developing a whole new API reproving Jordan-Holder. |
Note that the docstring/copyright is still missing
…ill be cleaned up)
So I do agree that this is a lot of API to develop for this task (though I admit I can't yet see how what's proven here would imply Jordan Holder without some more work). We considered using this Jordan-Holder proof at one point, but we went for this other one because we thought on paper it looked like not much more work and that it would give the case for infinite length modules for free. But I agree that this small advantage over the Jordan-Holder based proof is definitely not worth all this API development. That said, I still think the API itself is worthwhile for reasoning about chains of submodules because it makes moving them around with maps easier. I could be wrong about this applicability of the API because of my lack of experience, but if it is the case that this API is independently useful then I think it's less clear cut which approach to the proof we should use, because the actual proof of the main theorem here is fairly short once all the other stuff is built up. |
…community/mathlib4 into Raph-DG-ModuleLength
In this PR, we define the module length to be the krull dimension of the lattice of submodules and prove that it is additive in short exact sequences. Relies on #22069, #22036 and #21869