feat(Algebra/MvPolynomial): add coefficient lemma for uniqueAlgEquiv#38420
feat(Algebra/MvPolynomial): add coefficient lemma for uniqueAlgEquiv#38420eliasjudin wants to merge 1 commit intoleanprover-community:masterfrom
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. |
|
This PR/issue depends on: |
481bac9 to
ff6737a
Compare
PR summary 400c83017dImport changes for modified filesNo significant changes to the import graph Import changes for all files
Declarations diff
You can run this locally as follows## summary with just the declaration names:
./scripts/pr_summary/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/pr_summary/declarations_diff.sh long <optional_commit>The doc-module for No changes to technical debt.This script lives in the
|
|
Please skip the summary heading in this and future PR descriptions. Implicitly the introductory text is the summary. |
|
|
||
| /-- The coefficient of `X ^ n` in `uniqueAlgEquiv R σ P` is the coefficient of the unique | ||
| monomial of degree `n` in `P`. -/ | ||
| theorem coeff_uniqueAlgEquiv [Unique σ] (P : MvPolynomial σ R) (n : ℕ) : |
There was a problem hiding this comment.
Could you add the symm version too?
Summary
Adds
MvPolynomial.coeff_uniqueAlgEquiv, identifying the coefficient ofX ^ ninMvPolynomial.uniqueAlgEquiv R σ Pwith the coefficient of the unique multivariate monomialFinsupp.single default ninP.Motivation
This splits the coefficient-level API for
MvPolynomial.uniqueAlgEquivout of #37801, followingEric Wieser's review request.