-
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 <loreaujy@gmail.com>
Co-authored-by: Johan Commelin <johan@commelin.net>
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 5cdfd92a0cImport changes for modified filesNo significant changes to the import graph Import changes for all files
|
This PR/issue depends on: |
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