Macaulay2 » Documentation
Packages » NeuralIdeals :: polarizeList
next | previous | forward | backward | up | index | toc

polarizeList -- polarizes a list of ring elements

Description

A method which takes a list of pseudomonomials in a polynomial ring and replaces every instance of (1-var) with a new variable. It is recommended that you specify the ring in which the new monomial will live, see examples below.
i1 : R=ZZ/2[x_1..x_3];
i2 : L={x_1*(1-x_2),x_2*(1-x_3)};
i3 : S=ZZ/2[x_1..x_3,y_1..y_3];
i4 : polarizeList(L,S)

o4 = {x y , x y }
       1 2   2 3

o4 : List

Ways to use polarizeList:

  • polarizeList(List)
  • polarizeList(List,Ring)

For the programmer

The object polarizeList is a method function.


The source of this document is in NeuralIdeals.m2:868:0.