feat(NumberTheory/Bernoulli): add bernoulli'_five and bernoulli'_six#41491
feat(NumberTheory/Bernoulli): add bernoulli'_five and bernoulli'_six#41491qdiazblanco wants to merge 1 commit into
Conversation
Welcome new contributor!Thank you for contributing to Mathlib! If you haven't done so already, please review our contribution guidelines, as well as the style guide and naming conventions. In particular, we kindly remind contributors that we have guidelines regarding the use of AI when making pull requests. We use a review queue to manage reviews. If your PR does not appear there, it is probably because it is not successfully building (i.e., it doesn't have a green checkmark), has the If you haven't already done so, please come to https://leanprover.zulipchat.com/, introduce yourself, and mention your new PR. Thank you again for joining our community. |
PR summary 6366d52008Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
YaelDillies
left a comment
There was a problem hiding this comment.
Do we really want to add more computations of small Bernoulli numbers? Instead we should make it easier to compute them whenever needed. See https://leanprover.zulipchat.com/#narrow/channel/116395-maths/topic/Fast.20computation.20of.20Bernoulli.20numbers/with/590406943 for some ideas.
maintainer merge?
|
🚀 Pull request has been placed on the maintainer queue by YaelDillies. |
|
I am working on a metaprogram to compute these (which outperforms the methods in that thread), keep an eye out for a PR about this, or feel free to DM me if you need something sooner. |
Add
bernoulli'_fiveandbernoulli'_sixas simp lemmas, continuing theexisting sequence of explicit values
bernoulli'_zerothroughbernoulli'_four. In particular this recordsbernoulli' 5 = 0andbernoulli' 6 = 1 / 42.These results are upstreamed from the FLT project
(ImperialCollegeLondon/FLT#1069, by William Coram
and Samuel Yin, written with the assistance of Claude and
cleaned up by Codex and then by Pepa Montero). I have done some further changes to fit Mathlib conventions.