Zulip Chat Archive
Stream: Is there code for X?
Topic: Multivariate Laurent polynomials
Justus Springer (Nov 28 2024 at 14:34):
There is Algebra/Polynomial/Laurent
for Laurent polynomials in one variable and Algebra/MvPolynomial
for multivariate polynomial rings. I can't find multivariate Laurent polynomials though, is this correct? I assume they could be defined by something like this:
import Mathlib.Algebra.MonoidAlgebra.Defs
def MvLaurentPolynomial (σ : Type*) (R : Type*) [CommSemiring R] :=
AddMonoidAlgebra R (σ →₀ ℤ)
Johan Commelin (Nov 28 2024 at 14:39):
I wouldn't be surprised if they are missing.
Last updated: May 02 2025 at 03:31 UTC