úÎ!f&(c) 2019 Andrew LelechenkoBSD3/Andrew Lelechenko <andrew.lelechenko@gmail.com>NoneX „polyPolynomials of one variable.:set -XOverloadedLists"-- (1 + x) * (-1 + x) = (-1 + x^2)toPoly [1,1] * toPoly [-1,1]Poly {unPoly = [-1,0,1]}:set -XOverloadedLists-- (1 + x) + (1 - x) = 2toPoly [1,1] + toPoly [1,-1]Poly {unPoly = [2]}polyConvert M to a vector of coefficients (first element corresponds to a constant term).polyMake M from a list of coefficients (first element corresponds to a constant term).:set -XOverloadedListstoPoly [1,2,3]Poly {unPoly = [1,2,3]}:set -XOverloadedListstoPoly [0,0,0]Poly {unPoly = []}polyMake O from a vector of coefficients (first element corresponds to a constant term).:set -XOverloadedListstoPoly' [1,2,3]Poly {unPoly = [1,2,3]}:set -XOverloadedListstoPoly' [0,0,0]Poly {unPoly = []}(c) 2019 Andrew LelechenkoBSD3/Andrew Lelechenko <andrew.lelechenko@gmail.com>None#poly-0.1.0.0-DkBzQqemnlaCjfzTf53vJt Data.PolyData.Poly.Uni.DensePolyunPolytoPolytoPoly'