lmlib.polynomial.poly.poly_prod#

lmlib.polynomial.poly.poly_prod(polys)#

\(\alpha^\mathsf{T} x^q \cdot \beta^\mathsf{T} x^q = \color{blue}{\tilde{\alpha}^\mathsf{T} x^\tilde{q}}\)

Product of two univariate polynomials of common variable x

Parameters

polys (tuple of Poly) – (poly_1, poly_2), two polynomials to be multiplied

Returns

outpoly_tilde, product as polynomial \(\tilde{\alpha}^\mathsf{T} x^\tilde{q}\)

Return type

Poly

References

[Wildhaber2019] (Eq. 6.14)